@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;700;900&display=swap');

:root {
    --bg-dark: #050505;
    --primary-red: #ff2d55;
    --accent-gold: #e2b05e;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --red-glow: rgba(255, 45, 85, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: linear-gradient(90deg, #1a1a1c, var(--primary-red), #1a1a1c);
    color: white;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.announcement-content i {
    width: 14px;
    height: 14px;
}

.announcement-bar strong {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

/* --- Animated Mesh Background --- */
.mesh-container {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: var(--bg-dark);
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: blob-float 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #450a0a 0%, transparent 70%);
    top: -15%;
    left: -10%;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7f1d1d 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation-delay: -7s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #18181b 0%, transparent 70%);
    top: 30%;
    left: 30%;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(120px, 80px) scale(1.15);
    }
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.08;
    pointer-events: none;
}

/* --- Layout --- */
.layout-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.05rem;
}

.nav-logo span {
    color: var(--primary-gold);
    font-weight: 300;
    margin-left: 0.5rem;
}

.logo-x {
    color: var(--primary-red);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* Slightly tighter gap for more items */
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 45, 85, 0.3);
    /* Subtle red border to hint guide */
    color: var(--text-main);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn .nav-icon {
    color: var(--primary-red);
    filter: drop-shadow(0 0 5px var(--red-glow));
}

.nav-btn:hover {
    background: rgba(255, 45, 85, 0.1);
    border-color: var(--primary-red);
    box-shadow: 0 0 20px var(--red-glow);
    transform: translateY(-2px);
}

.nav-btn:hover .nav-icon {
    transform: scale(1.2);
}

.nav-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.chevron {
    width: 12px !important;
    height: 12px !important;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

/* --- Dropdown Logic --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    /* Closer to button */
    right: 0;
    width: 230px;
    /* Slimmer */
    background: rgba(12, 12, 14, 0.98);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    /* Slightly tighter corners */
    padding: 0.5rem;
    /* Less padding */
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.8rem;
    /* Compact items */
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    /* Slightly smaller text */
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 18px;
    height: 18px;
    color: var(--primary-red);
}

.language-picker {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--glass-bg);
    padding: 0.4rem 0.6rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0.6);
}

.lang-btn img {
    border-radius: 2px;
    display: block;
    object-fit: contain;
}

.lang-btn:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

.lang-btn.active {
    filter: grayscale(0) opacity(1);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.nav-status {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--glass-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

/* --- Hero Section --- */
.hero-section {
    padding: 8rem 0 4rem;
    text-align: center;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, var(--secondary-gold), var(--primary-gold));
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: var(--primary-red);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid var(--primary-red);
    margin-bottom: 2.5rem;
    box-shadow: 0 0 20px var(--red-glow);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.italics {
    font-style: italic;
    font-weight: 400;
}

.gradient-gold {
    background: linear-gradient(to right, #fff, var(--primary-gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-red {
    color: var(--primary-red);
    text-shadow: 0 0 30px var(--red-glow);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 5rem;
    line-height: 1.6;
    font-weight: 400;
}

/* --- Entry Card (Original size, still full image) --- */
.entry-card-container {
    perspective: 2000px;
    max-width: 440px;
    margin: 0 auto;
}

.premium-card {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, var(--glass-border), transparent, var(--glass-border));
    transition: transform 0.1s ease-out;
}

.card-inner {
    position: relative;
    background: #0c0c0e;
    /* Reverted to solid deep black */
    border-radius: 38px;
    height: 450px;
    overflow: hidden;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.card-image-bg {
    display: none;
}

.card-overlay {
    display: none;
}

.card-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.exclusive-badge {
    color: var(--accent-gold);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.icon-box {
    width: 34px;
    height: 34px;
    background: rgba(255, 45, 85, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

.icon-box i {
    width: 16px;
    height: 16px;
}

.card-bottom {
    position: relative;
    z-index: 2;
    text-align: left;
}

.card-bottom h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #fff;
}

.card-bottom p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--text-main);
    color: #000;
    padding: 0.7rem 1.75rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: btn-pulse 2s infinite ease-out;
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 45, 85, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 45, 85, 0);
    }
}

.action-btn i {
    transition: transform 0.3s ease;
}

.premium-card:hover .action-btn {
    background: var(--primary-red);
    color: white;
    transform: scale(1.08);
    /* Grows more noticeably */
    box-shadow: 0 0 25px var(--red-glow), 0 0 50px rgba(255, 45, 85, 0.3);
}

.premium-card:hover .action-btn i {
    transform: translateX(4px) scale(1.2);
    /* Icon moves and grows */
}

.card-glow-border {
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle at center, var(--red-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    pointer-events: none;
}

.premium-card:hover .card-glow-border {
    opacity: 1;
}

/* --- Footer --- */
.minimal-footer {
    padding: 6rem 0 3rem;
}

.footer-content {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.red-dot {
    color: var(--primary-red);
    margin: 0 0.4rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-reveal {
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
        text-align: center;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-status {
        display: none;
        /* Hide status on mobile to save space */
    }

    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .nav-btn span {
        display: none;
        /* Hide text, keep only icon on smallest screens */
    }

    .hero-section {
        padding: 2rem 0;
    }

    .entry-card-container {
        max-width: 100%;
    }

    .card-inner {
        height: 360px;
        padding: 2rem;
    }

    .card-bottom h3 {
        font-size: 1.6rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Show button text on tablets but not small phones */
    @media (min-width: 480px) {
        .nav-btn span {
            display: inline;
        }

        .navbar {
            flex-direction: row;
        }

        .nav-right {
            width: auto;
        }
    }
}

/* --- Modal System --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #0c0c0e;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-red);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 45, 85, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    margin: 0 auto 1.5rem;
}

.modal-icon i {
    width: 30px;
    height: 30px;
}

.modal-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #fff;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px var(--red-glow);
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.modal-link.bank-btn {
    background: #1e3a8a;
    /* Deep Navy Blue for contrast with red flag */
    color: white;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

.modal-link.bank-btn:hover {
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.4);
}

.modal-link.usdt-btn {
    background: #f3ba2f;
    /* Binance Yellow for USDT */
    color: #000;
    box-shadow: 0 10px 20px rgba(243, 186, 47, 0.2);
}

.modal-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.modal-link.usdt-btn:hover {
    box-shadow: 0 15px 30px rgba(243, 186, 47, 0.3);
}

@media (max-width: 480px) {
    .modal-actions {
        flex-direction: column;
    }

    .modal-link {
        width: 100%;
    }
}