* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.8;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #10b981;
    text-decoration: none;
    transition: opacity 0.2s;
}

.brand:hover {
    opacity: 0.8;
}

.cta-button {
    background: transparent;
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    transform: translateY(-1px);
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.logout-btn {
    background: transparent !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    padding: 10px 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-radius: 6px;
}

.logout-btn:hover {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: #10b981 !important;
    transform: translateY(-1px);
}

/* Privacy Content */
.privacy-content {
    padding: 60px 20px 80px 20px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 13px;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #10b981;
}

.breadcrumb span:last-child {
    color: #10b981;
}

/* Page Title */
.page-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #fff;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 48px;
    font-style: italic;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.policy-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-top: 24px;
    margin-bottom: 16px;
}

.policy-section p {
    font-size: 16px;
    color: #d4d4d4;
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Lists */
.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.policy-list li {
    font-size: 16px;
    color: #d4d4d4;
    line-height: 1.8;
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
}

.policy-list li::before {
    content: '→';
    position: absolute;
    left: 8px;
    color: #10b981;
    font-weight: 700;
}

.policy-list li strong {
    color: #10b981;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 24px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #d4d4d4;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.email-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.email-link:hover {
    color: #059669;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(26, 26, 26, 0.5);
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand {
    font-size: 14px;
    font-weight: 800;
    color: #10b981;
    letter-spacing: 1.5px;
}

.footer-email {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-email:hover {
    color: #10b981;
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-nav a {
    color: #555;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    padding: 8px 16px;
    border-radius: 4px;
}

.footer-nav a:hover {
    color: #10b981;
}

/* YouTube Link Styling */
.footer-nav a[href*="youtube"] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    letter-spacing: 1px;
    transition: all 0.3s;
}

.footer-nav a[href*="youtube"]:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 12px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .privacy-content {
        padding: 40px 10px 60px 10px;
    }
    
    .cta-button {
        width: 100%;
        padding: 14px 24px;
        text-align: center;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .policy-section h2 {
        font-size: 24px;
    }
    
    .policy-section h3 {
        font-size: 18px;
    }
    
    .policy-section p,
    .policy-list li {
        font-size: 15px;
    }
    
    .policy-list li {
        padding-left: 28px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .footer {
        padding: 40px 10px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-nav a[href*="youtube"] {
        width: 100%;
        text-align: center;
    }
    
    .user-menu {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .user-name {
        font-size: 13px;
    }
    
    .logout-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .policy-section h2 {
        font-size: 22px;
    }
    
    .policy-section p,
    .policy-list li {
        font-size: 14px;
    }
}