html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 8px 12px;
    border: 2px solid #202020;
    background: transparent;
    color: #202020;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #202020;
    color: #ffffff;
}

.lang-btn.active {
    background: #202020;
    color: #ffffff;
}

body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding-top: 20px;
    padding-left: 5px;
}

canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
    position: relative;
    overflow-y: auto;
}

/* .main-title {
    padding-top: 40px;
} */

.about, .download, .support, .contacts, .changelog, .privacy-policy, .open-source, .love_board_buddy {
    margin-bottom: 20px;
    width: 100%;
}

.text-container {
    overflow: auto;
    position: relative;
    z-index: 2;
    color: #202020;
    height: 100%;
    padding: 10px;
}

p {
    margin-top: 3px;
    margin-bottom: 5px;
}

div {
    margin-bottom: 10px;
}

.title {
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    font-size: 25px;
    color: #202020;
    margin-bottom: 10px; 
}

.subtitle {
    font-size: 15px;
    color: #202020;
    margin-bottom: 15px; 
}

ul {
    list-style-type: none;;
    padding: 10px;
    color: #202020;
    margin: 0;
}

li:nth-child(1)::before {
    content: '⚀ ';
}

li:nth-child(2)::before {
    content: '⚁ ';
}

li:nth-child(3)::before {
    content: '⚂ ';
}

li:nth-child(4)::before {
    content: '⚃ ';
}

li:nth-child(5)::before {
    content: '⚄ ';
}

li:nth-child(6)::before {
    content: '⚅ ';
}

/* changelog */
.changelog ul {
    list-style-type: none;
    padding-left: 20px;
}

.changelog ul > li::before {
    content: '＼⁠(⁠^⁠o⁠^⁠)⁠／ ';
    margin-left: -20px;
}

.changelog ul ul li::before {
    content: '↳ ';
    margin-left: -20px;
}

a {
    color: #A4A4A4;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

.privacy-policy {
    margin-bottom: 40px;
}

.privacy-content {
    text-align: left;
    color: #202020;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.privacy-content h2 {
    font-size: 20px;
    margin-top: 20px;
}

.privacy-content p, .privacy-content ul {
    font-size: 15px;
    line-height: 1.5;
}
