/* Color Variables & Root Settings */
:root {
    --deep-red: #8B0000;
    --cool-aqua: #00FFFF;
    --vibrant-purple: #9D00FF;
    --mint-green: #9ee7e8;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-overlay: rgba(0,0,0,0.7);
}

.html-root, .body-root {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

/* Background Animation avoiding white */
.body-root {
    background: linear-gradient(135deg, var(--cool-aqua) 0%, #1c5270 50%, var(--vibrant-purple) 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-light);
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Typography & General Classes */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--deep-red);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #a80000;
    transform: scale(1.05);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
}

/* Ad Banner */
.ad-banner {
    background-color: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 5px 10px;
    font-size: 0.85rem;
}
.ad-text { display: block; }

/* Loader */
.loader-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--dark-bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
}
.loader-circle {
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid var(--mint-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
.loader-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--mint-green);
    letter-spacing: 2px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Header */
.header-main {
    background-color: var(--mint-green);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-container {
    animation: pulseLogo 3s infinite;
}
.logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--deep-red);
    font-family: 'Courier New', Courier, monospace;
}
@keyframes pulseLogo { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

.desktop-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--deep-red); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Hamburger */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--dark-bg);
    z-index: 1000;
    transition: right 0.4s ease;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}
.mobile-menu-drawer.open { right: 0; }
.close-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 20px; right: 20px;
}
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin-top: 60px;
}
.mobile-nav-item { margin-bottom: 20px; }
.mobile-nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    min-height: 70vh;
}
.hero-text-area { flex: 1; padding-right: 40px; }
.hero-title {
    font-size: 4rem;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.5;
}
.hero-image-area { flex: 1; text-align: center; }
.hero-img-animated {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* Content Sections */
.content-section {
    padding: 60px 5%;
    background: rgba(0,0,0,0.4);
    margin: 20px 5%;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--mint-green);
}
.section-text {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Features (Why Us) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.feature-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-10px); }
.feature-icon { font-size: 3rem; display: block; margin-bottom: 15px; }
.feature-title { font-size: 1.5rem; margin-bottom: 10px; color: var(--cool-aqua); }
.feature-text { font-size: 1rem; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.test-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
}
.test-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.test-avatar {
    width: 50px; height: 50px;
    background: var(--vibrant-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
}
.test-name { font-size: 1.2rem; font-weight: bold; color: var(--mint-green); }
.test-comment { font-style: italic; }

/* FAQs */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; }
.faq-question {
    width: 100%;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}
.faq-question:hover { background: rgba(255,255,255,0.2); }
.faq-answer {
    display: none;
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 0 0 5px 5px;
}
.faq-text { margin: 0; line-height: 1.5; }

/* Footer */
.footer-main {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 40px 5% 20px 5%;
    margin-top: 50px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-title { color: var(--mint-green); font-size: 1.5rem; margin-bottom: 15px; }
.footer-text { margin: 5px 0; }
.footer-link { color: var(--cool-aqua); text-decoration: none; transition: color 0.3s; }
.footer-link:hover { color: var(--vibrant-purple); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-li { margin-bottom: 10px; }
.footer-btn-link {
    background: transparent;
    border: none;
    color: var(--cool-aqua);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    text-align: left;
}
.footer-btn-link:hover { color: var(--vibrant-purple); }
.footer-disclaimer {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 10px;
}
.copyright-text { text-align: center; font-size: 0.9rem; margin: 0; }

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-overlay);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.modal-box {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 2px solid var(--cool-aqua);
}
.modal-close {
    position: absolute;
    top: 10px; right: 10px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}
.modal-title { color: var(--mint-green); margin-top: 0; }
.modal-text { line-height: 1.5; margin-bottom: 10px; }

/* Cookies Popup */
.cookie-container {
    position: fixed;
    bottom: 20px; left: 5%; right: 5%;
    background: rgba(0,0,0,0.9);
    padding: 20px;
    border-radius: 10px;
    z-index: 1500;
    border: 1px solid var(--deep-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie-text { margin: 0; font-size: 1rem; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn-accept { background: var(--mint-green); color: var(--text-dark); }
.cookie-btn-reject { background: #555; color: var(--text-light); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .desktop-nav, .nav-btn { display: none; }
    .hamburger-btn { display: flex; }
    .hero-section { flex-direction: column; text-align: center; }
    .hero-text-area { padding-right: 0; margin-bottom: 40px; }
    .hero-title { font-size: 2.5rem; }
    .cookie-container { flex-direction: column; gap: 15px; text-align: center; }
}