/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4aa;
    --primary-dark: #00b894;
    --secondary-color: #1a1a2e;
    --background-dark: #0f0f1e;
    --background-light: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --accent-glow: rgba(0, 212, 170, 0.3);
    --card-bg: rgba(26, 26, 46, 0.8);
    --border-color: rgba(0, 212, 170, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-text:hover {
    transform: scale(1.05);
}

.logo .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s ease;
}

.logo-text:hover .highlight {
    text-shadow: 0 0 30px var(--accent-glow);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.btn-register {
    background: var(--primary-color);
    color: #000;
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-register:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--accent-glow);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-text strong {
    color: var(--primary-color);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    text-decoration: none;
    display: inline-block;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

.btn-link {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    text-decoration: underline;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
}

.btn-link:hover {
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

.hero-cta-secondary {
    margin-top: 1rem;
    gap: 2rem;
}

.hero-cta-secondary .btn-link {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--text-secondary);
    border-radius: 0;
    transition: all 0.3s ease;
}

.hero-cta-secondary .btn-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Sections */
.section {
    padding: 4rem 0;
    position: relative;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.section-title-large,
h2.section-title-large {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Mirrors Section */
.mirrors-section {
    background: linear-gradient(180deg, var(--background-dark) 0%, var(--background-light) 100%);
}

.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mirror-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mirror-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.mirror-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mirror-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.mirror-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mirror-link:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Official Sites Section */
.official-section {
    background: var(--background-dark);
}

.countries-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.country-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.country-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.country-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.country-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Why Section */
.why-section {
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background-dark) 100%);
}

/* Security Section */
.security-section {
    background: var(--background-dark);
}

.post_bg {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.checklist {
    margin: 2rem 0;
}

.checklist-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.checklist-list {
    list-style: none;
    padding: 0;
}

.checklist-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 212, 170, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checklist-list li:hover {
    background: rgba(0, 212, 170, 0.1);
    transform: translateX(5px);
}

.checklist-list code {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.availability-section {
    margin: 3rem 0;
}

.availability-title {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.availability-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.statistics {
    margin: 2rem 0;
}

.statistics_list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.statistics_b {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    overflow: hidden;
}

.statistics_bt {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.statistics_bl {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    height: 30px;
    position: relative;
    overflow: hidden;
}

.statistics_b_line {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    animation: progressAnimation 2s ease;
    box-shadow: 0 0 10px var(--accent-glow);
}

@keyframes progressAnimation {
    from {
        width: 0% !important;
    }
}

.faq-section {
    margin-top: 3rem;
}

.faq_b {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq_b_title {
    padding: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq_b_title:hover {
    color: var(--primary-color);
    background: rgba(0, 212, 170, 0.05);
}

.faq_b_title::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq_b[open] .faq_b_title::after {
    transform: rotate(45deg);
}

.faq_b_text {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--background-light);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--card-bg);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.modal-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-link {
    display: block;
    padding: 1rem;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-link:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title-large {
        font-size: 2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .header-buttons {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .mirrors-grid,
    .countries-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .post_bg {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .hero-text {
        font-size: 1rem;
    }
}

