:root {
    --bg-deep: #0a192f;
    --bg-card: rgba(17, 34, 64, 0.7);
    --accent-glow: #00d4ff;
    --text-primary: #e6f1ff;
    --text-secondary: #8892b0;
    --white: #ffffff;
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 6rem 0;
}

.center {
    text-align: center;
}

.text-glow {
    color: var(--accent-glow);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-rounded {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-deep);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-icon {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 2rem;
}

.energy-ball {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    box-shadow: 0 0 30px var(--accent-glow);
    animation: energy-pulse 2s infinite ease-in-out;
}

@keyframes energy-pulse {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.loader-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, var(--accent-glow), #fff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200%;
    }

    100% {
        background-position: 200%;
    }
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-glow);
    animation: load-progress 1.5s forwards ease-in-out;
}

@keyframes load-progress {
    to {
        width: 100%;
    }
}

.loader-wrapper.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

/* Advertisement Bars */
.top-ad-bar {
    background: rgba(17, 34, 64, 0.9);
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-align: center;
    padding: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon-small {
    width: 32px;
    height: 32px;
    position: relative;
    background: var(--accent-glow);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.sun-ring {
    width: 16px;
    height: 16px;
    border: 2px solid var(--bg-deep);
    border-radius: 50%;
    position: relative;
}

.sun-ring::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px dashed var(--bg-deep);
    border-radius: 50%;
    animation: rotate 10s infinite linear;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.logo {
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.5px;
    font-weight: 800;
}

.logo-accent {
    color: var(--accent-glow);
}

.nav-desktop .nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: var(--accent-glow);
}

.cta-button {
    background: var(--accent-glow);
    color: var(--bg-deep);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent-glow);
    border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100%;
    background: var(--bg-deep);
    z-index: 2000;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    right: 0;
}

.menu-close {
    align-self: flex-end;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-nav ul {
    margin-top: 3rem;
}

.mobile-nav li {
    margin-bottom: 2rem;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    padding: 8rem 0 6rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tagline {
    color: var(--accent-glow);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-link {
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--accent-glow);
    padding-bottom: 2px;
}

.hero-image {
    position: relative;
}

.main-hero-img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent-glow);
    color: var(--bg-deep);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* Generic Section Styles */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-glow);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.stars {
    color: var(--accent-glow);
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-glow);
}

/* FAQ */
.accordion {
    margin-top: 2rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: var(--bg-card);
    border: none;
    color: var(--white);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

.accordion-content {
    background: rgba(10, 25, 47, 0.3);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 1.5rem;
    max-height: 500px;
}

/* Return Policy */
.policy-box {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(2, 12, 27, 0.8) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.policy-box h3 {
    margin-bottom: 1.5rem;
}

.policy-box p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #020c1b;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info p {
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.footer-logo-wrapper {
    margin-bottom: 1rem;
}

.footer h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-glow);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.footer-legal-disclosure {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

.ad-disclosure {
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legal-popup-links {
    display: flex;
    gap: 2rem;
}

.legal-popup-links a:hover {
    color: var(--accent-glow);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 12, 27, 0.9);
    backdrop-filter: blur(5px);
    z-index: 5000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-deep);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    width: 100%;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--accent-glow);
}

.modal-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 4000;
    transition: bottom 0.5s ease;
}

.cookie-popup.active {
    bottom: 2rem;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-btns {
    display: flex;
    gap: 1rem;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

#acceptCookies {
    background: var(--accent-glow);
    color: var(--bg-deep);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

/* Responsive Styles */
@media (max-width: 992px) {

    .hero-container,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .nav-desktop,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }

    .legal-popup-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}