/* Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5865F2;
    --primary-dark: #4752c4;
    --primary-light: #7983f5;
    --secondary: #EB459E;
    --success: #57F287;
    --warning: #FEE75C;
    --danger: #ED4245;
    --dark: #1a1b2f;
    --darker: #0f101c;
    --light: #f8f9ff;
    --gray: #8e9297;
    --gray-light: #b9bbbe;
    --border: #2f3136;
    --gradient-1: linear-gradient(135deg, #5865F2, #EB459E);
    --gradient-2: linear-gradient(135deg, #57F287, #5865F2);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orbe {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
    top: -200px;
    right: -200px;
}

.orbe-2 {
    background: var(--gradient-2);
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -200px;
    top: auto;
    right: auto;
    animation-delay: -5s;
}

.orbe-3 {
    background: linear-gradient(135deg, #EB459E, #FEE75C);
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, 50px) scale(1.1); }
    50% { transform: translate(0, 100px) scale(1); }
    75% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 27, 47, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.logo-wrapper {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper i {
    color: white;
    font-size: 1.25rem;
}

.brand-highlight {
    color: var(--primary-light);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-discord {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #5865F2;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Privacy Header */
.privacy-header {
    padding: 4rem 0;
    position: relative;
    text-align: center;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
}

.header-badge i {
    color: var(--primary);
}

.header-badge span {
    color: var(--primary-light);
    font-weight: 500;
}

.privacy-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(88, 101, 242, 0.3); }
    to { text-shadow: 0 0 40px rgba(88, 101, 242, 0.6); }
}

.header-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--gray-light);
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    position: relative;
    background: rgba(15, 16, 28, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin-top: -2rem;
}

/* Summary Card */
.summary-card {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(235, 69, 158, 0.1));
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.summary-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.summary-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.summary-text p {
    color: var(--gray-light);
    font-size: 1.1rem;
}

.summary-text strong {
    color: var(--success);
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    position: relative;
}

/* Table of Contents */
.toc-sidebar {
    position: relative;
}

.toc-container {
    position: sticky;
    top: 100px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.toc-container h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.toc-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.toc-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-light);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    border-left: 2px solid transparent;
}

.toc-link:hover,
.toc-link.active {
    background: rgba(88, 101, 242, 0.1);
    color: white;
    border-left-color: var(--primary);
}

.toc-progress {
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-1);
    width: 0%;
    transition: width 0.1s ease;
}

/* Privacy Article */
.privacy-article {
    max-width: 900px;
}

.privacy-section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.privacy-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.privacy-section h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--light);
}

.section-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(88, 101, 242, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
}

.section-lead {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

/* Info Cards */
.info-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.info-card h3 i {
    color: var(--primary);
}

.data-list {
    list-style: none;
}

.data-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-light);
}

.data-list li i {
    color: var(--primary);
    margin-top: 0.25rem;
    min-width: 20px;
}

.sub-list {
    margin-left: 2rem;
    margin-top: 0.5rem;
    list-style: disc;
    color: var(--gray);
}

.sub-list li {
    display: list-item;
    margin-bottom: 0.25rem;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.usage-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.usage-item.allowed i {
    color: var(--success);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.usage-item h4 {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.usage-item p {
    color: var(--gray-light);
    font-size: 0.875rem;
}

/* Warning Box */
.warning-box {
    background: rgba(237, 66, 69, 0.1);
    border: 1px solid rgba(237, 66, 69, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.warning-box i {
    color: var(--danger);
    font-size: 2rem;
}

.warning-content h4 {
    color: var(--danger);
    margin-bottom: 1rem;
}

.warning-content ul {
    list-style: none;
}

.warning-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-light);
}

.warning-content li i {
    color: var(--danger);
    font-size: 1rem;
}

/* Storage Grid */
.storage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.storage-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.storage-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.storage-item h4 {
    margin-bottom: 1rem;
    color: var(--light);
}

.storage-item ul {
    list-style: none;
}

.storage-item li {
    margin-bottom: 0.5rem;
    color: var(--gray-light);
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.right-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.right-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.right-item h4 {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.right-item p {
    color: var(--gray-light);
    font-size: 0.875rem;
}

/* Contact Request */
.contact-request {
    background: rgba(88, 101, 242, 0.05);
    border: 1px solid rgba(88, 101, 242, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-request h4 {
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.request-channels {
    display: flex;
    gap: 1rem;
}

.channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.channel-btn.discord {
    background: #5865F2;
    color: white;
}

.channel-btn.discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.channel-btn.email {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.channel-btn.email:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Sharing List */
.sharing-list {
    margin: 1.5rem 0;
}

.sharing-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.sharing-item.limited i {
    color: var(--warning);
}

.sharing-item strong {
    color: var(--light);
}

/* Never Share */
.never-share {
    background: rgba(237, 66, 69, 0.05);
    border: 1px solid rgba(237, 66, 69, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.never-share h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--danger);
    margin-bottom: 1rem;
}

.never-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.never-grid span {
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--gray-light);
    font-size: 0.875rem;
}

/* Children Notice */
.children-notice {
    background: rgba(254, 231, 92, 0.05);
    border: 1px solid rgba(254, 231, 92, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.children-notice i {
    font-size: 3rem;
    color: var(--warning);
}

.children-notice p {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.parent-note {
    color: var(--warning);
    font-weight: 500;
}

/* Changes Card */
.changes-card {
    background: rgba(254, 231, 92, 0.05);
    border: 1px solid rgba(254, 231, 92, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.changes-card i {
    font-size: 3rem;
    color: var(--warning);
    margin-bottom: 1rem;
}

.changes-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.changes-card ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.changes-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
}

.changes-card li i {
    font-size: 1rem;
    margin: 0;
}

.changes-note {
    color: var(--warning);
    font-weight: 500;
    margin-top: 1rem;
}

/* Security Badges */
.security-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.security-badges span {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
}

.security-badges i {
    color: var(--primary);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-item-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-large:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.contact-item-large i {
    font-size: 2rem;
}

.contact-item-large.discord i {
    color: #5865F2;
}

.contact-item-large.email i {
    color: #EB459E;
}

.contact-item-large.dpo i {
    color: #57F287;
}

.contact-item-large.cs i {
    color: #FEE75C;
}

.contact-item-large.web i {
    color: var(--primary);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-bottom: 0.25rem;
}

.contact-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Summary Table */
.summary-section {
    margin-top: 3rem;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.summary-table th {
    background: var(--primary);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.summary-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--gray-light);
}

.summary-table tr:last-child td {
    border-bottom: none;
}

.summary-table tr:hover td {
    background: rgba(255,255,255,0.05);
}

/* Agreement Box */
.agreement-box {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(235, 69, 158, 0.1));
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.checkbox-text {
    color: var(--gray-light);
    font-size: 1rem;
}

.agree-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--gray);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    cursor: not-allowed;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.agree-btn.active {
    background: var(--gradient-1);
    cursor: pointer;
    opacity: 1;
}

.agree-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-about .footer-logo i {
    color: var(--primary);
}

.footer-about .footer-logo span span {
    color: var(--primary-light);
}

.footer-about p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-light);
    opacity: 0.7;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.footer-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.05);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.footer-email-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-light);
    font-size: 0.875rem;
}

.footer-bottom i {
    color: var(--danger);
    margin: 0 0.25rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .toc-sidebar {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .btn-discord span {
        display: none;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
    }
    
    .storage-grid {
        grid-template-columns: 1fr;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .request-channels {
        flex-direction: column;
    }
    
    .changes-card ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}