@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0c0e12;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --accent: #ec4899;
    --check: #63f16a;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --font-main: 'Outfit', sans-serif;
    --glass-blur: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    /* Optional sleek background gradient */
    background: radial-gradient(circle at top left, #1e1b4b, transparent 40%),
        radial-gradient(circle at bottom right, #312e81, transparent 40%),
        var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(12, 14, 18, 0.7);
    backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--card-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a.nav-item {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a.nav-item:hover {
    color: var(--text-main);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    min-width: 180px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(15px);
}

.dropdown li {
    margin-bottom: 0.25rem;
}

.dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dropdown a:hover {
    background: var(--card-bg);
    color: var(--primary);
}

/* CTA Button in Nav */
.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.39);
}

.btn-nav:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.23);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    display: block;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.btn-main {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: black;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s;
}

.btn-main:hover {
    transform: scale(1.05);
}

/* Offers Grid */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    flex: 1;
    /* Ensures container takes available space */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s, border-color 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.card ul {
    margin-bottom: 2rem;
}

.card li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card li::before {
    content: "✓";
    color: var(--check);
}

.card li.cross::before {
    content: "✗";
    color: #ef4444;
}

.btn-card {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: white;
    font-weight: 600;
}

.btn-card:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Base Menu Toggle Style */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        /* Fill screen */
        background: rgba(12, 14, 18, 0.98);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        border-top: 1px solid var(--card-border);
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        text-align: center;
        padding-top: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}



/* Footer */
footer {
    background: rgba(12, 14, 18, 0.95);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--card-border);
    margin-top: auto;
}


/* Showcase Notice Popup */
.showcase-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(12, 14, 18, 0.95);
    border-top: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 0;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: slideIn 0.5s ease-out;
    text-align: center;
}

.showcase-popup p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.showcase-popup .btn-accept {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.2s;
}

.showcase-popup .btn-accept:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: underline;
}


/* Adblock Overlay */
#adblock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

#adblock-overlay h2 {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

#adblock-overlay p {
    color: white;
    font-size: 1.5rem;
    max-width: 600px;
}

/* FAQ Styles */
.faq-container {
    max-width: 1000px;
}

.faq-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.faq-sidebar {
    flex: 0 0 250px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1rem;
    position: sticky;
    top: 100px;
}

.faq-tab {
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-muted);
    font-weight: 500;
    transition: 0.2s;
}

.faq-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.faq-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.faq-content {
    flex: 1;
}

.faq-group {
    display: none;
    animation: fadeIn 0.4s ease;
}

.faq-group.active {
    display: block;
}

.faq-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #fff, #a5b4fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-layout {
        flex-direction: column;
    }

    .faq-sidebar {
        width: 100%;
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
    }

    .faq-tab {
        white-space: nowrap;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    background-color: rgb(20, 20, 25);
    border: 1px solid var(--primary);
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}