@font-face {
    font-family: 'Nasalization';
    src: url('assets/fonts/nasalization-rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nasalization', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

body {
    background: linear-gradient(135deg, #090514 0%, #150b24 100%);
    color: #f1ecf6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #090514;
}
::-webkit-scrollbar-thumb {
    background: #9C27B0;
    border-radius: 4px;
}

/* Navbar */
.navbar {
    background: rgba(21, 11, 36, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(156, 39, 176, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #9C27B0, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #f1ecf6;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(156, 39, 176, 0.2);
    border-color: #9C27B0;
}

.lang-btn.active {
    background: linear-gradient(90deg, #9C27B0, #E91E63);
    border-color: transparent;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.4);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-top: 80px;
    padding: 3rem 5% 5rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    max-width: 800px;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #f1ecf6, #c5a9e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(156, 39, 176, 0.1);
}

.hero-section p {
    font-size: 1.2rem;
    color: #b5a9c6;
    line-height: 1.6;
}

.download-btn {
    display: inline-flex;
    background: linear-gradient(90deg, #9C27B0, #E91E63);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(156, 39, 176, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    background: rgba(156, 39, 176, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #e2d9f3;
}

.feature-card p {
    color: #b5a9c6;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Info Section (Tabs & Policies) */
.info-section {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #b5a9c6;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #f1ecf6;
    background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    color: #f1ecf6;
    background: rgba(156, 39, 176, 0.15);
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.glass-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #f1ecf6, #9C27B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.meta-date {
    font-size: 0.85rem;
    color: #9C27B0;
    margin-bottom: 2rem;
}

.policy-text {
    color: #d1c8df;
    font-size: 1rem;
    line-height: 1.8;
}

.policy-text h3 {
    font-size: 1.2rem;
    color: #e2d9f3;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    border-left: 3px solid #E91E63;
    padding-left: 10px;
}

.policy-text p {
    margin-bottom: 1rem;
}

.policy-text ul, .policy-text ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
}

.warning-text {
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 8px;
    padding: 15px;
    color: #ff85a7;
    margin: 1.5rem 0;
}

.warning-text strong {
    color: #E91E63;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: #b5a9c6;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #9C27B0;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(156, 39, 176, 0.2);
}

.submit-btn {
    background: linear-gradient(90deg, #9C27B0, #E91E63);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.direct-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #b5a9c6;
}

.direct-contact a {
    color: #E91E63;
    text-decoration: none;
    font-weight: bold;
}

.direct-contact a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #06030c;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2rem 5%;
    text-align: center;
    color: #655d75;
    font-size: 0.9rem;
}

.footer a {
    color: #b5a9c6;
    text-decoration: none;
}

.footer a:hover {
    color: #f1ecf6;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .glass-card {
        padding: 2rem 1.5rem;
    }
    
    .tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}
