:root {
    --bg-color: #0b0b0b;
    --card-bg: #161616;
    --text-color: #ecf0f1;
    --accent-color: #9b59b6;
    --accent-dark: #8e44ad;
    --accent-glow: rgba(155, 89, 182, 0.4);
    --border-color: #2c2c2c;
    --font-main: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed navbar */
}

body {
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 50% -20%, #2e0b36 0%, transparent 70%),
        radial-gradient(circle at 0% 50%, rgba(25, 10, 40, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(40, 10, 30, 0.4) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Navbar */
.navbar {
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px var(--accent-glow);
}

.logo i {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    padding-top: 60px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #e0aaff, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.subtitle {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 20px var(--accent-glow);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* Preview */
.menu-preview {
    padding: 4rem 1rem;
    text-align: center;
    background: var(--bg-color);
}

.preview-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    height: 300px; /* Placeholder height */
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Download Section */
.download-section {
    padding: 3rem 1rem;
    background: linear-gradient(to bottom, var(--bg-color), #140b18);
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.download-card {
    background: var(--card-bg);
    border: 1px solid var(--accent-dark);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(142, 68, 173, 0.2);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #e056fd);
}

.d-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.d-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.d-info p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.btn-download {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.btn-download:hover {
    background: var(--accent-dark);
    box-shadow: 0 0 15px var(--accent-glow);
}

.install-guide {
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.install-guide h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.install-steps {
    list-style-position: inside;
    text-align: left;
    color: #ccc;
    padding-left: 0;
}

.install-steps li {
    margin-bottom: 0.5rem;
}

/* Features */
.features-section {
    padding: 4rem 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.feature-category {
    margin-bottom: 3rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.category-header i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-pill {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.feature-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.feature-pill:hover {
    border-color: var(--accent-color);
    background: rgba(155, 89, 182, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.25);
}

.feature-pill:hover::before {
    left: 100%;
}

.feature-pill i {
    font-size: 1.1rem;
    color: var(--accent-color);
    transition: 0.3s; 
}

.feature-pill:hover i {
    text-shadow: 0 0 8px var(--accent-color);
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    color: #666;
    margin-top: 3rem;
}

/* New Image Styles */
.hero-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--accent-glow));
    animation: float 6s ease-in-out infinite;
}

.menu-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(155, 89, 182, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease;
}

.menu-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 50px rgba(155, 89, 182, 0.3);
}

.logo-img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

/* Install Note */
.install-note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    color: #ffd54f;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    border-radius: 4px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Gallery Section */
.gallery-section {
    padding: 2rem 0;
    overflow: hidden;
    background: #000;
}

.gallery-slider {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-track {
    display: flex;
    gap: 1rem;
    width: max-content;
}

.track-1 {
    animation: scroll-left 40s linear infinite;
}

.track-2 {
    animation: scroll-right 40s linear infinite;
}

.slide {
    width: 300px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 1px solid #333;
    transition: transform 0.3s;
}

.slide:hover {
    transform: scale(1.05);
    z-index: 10;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* About Section */
.about-section {
    padding: 3rem 1rem 1rem;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.8;
}

.about-content strong {
    color: var(--accent-color);
}

/* Section Description */
.section-description {
    text-align: center;
    color: #aaa;
    max-width: 700px;
    margin: -1.5rem auto 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.section-description.text-center {
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, transparent, rgba(20, 11, 24, 0.5));
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item[open] {
    border-color: var(--accent-color);
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    list-style: none;
    font-size: 1.05rem;
    color: var(--text-color);
    transition: background 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: '+';
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 0.75rem;
}

.faq-item[open] summary::before {
    content: '−';
}

.faq-item summary:hover {
    background: rgba(155, 89, 182, 0.08);
}

.faq-item p {
    padding: 0 1.5rem 1.2rem;
    color: #bbb;
    line-height: 1.7;
}

.faq-item a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Footer Nav */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #888;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

/* Menu Preview Section */
.menu-preview-section {
    padding: 4rem 1rem;
    text-align: center;
}

/* Verification badge */
.verification {
    color: #2ecc71 !important;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .download-card {
        padding: 1.5rem;
    }

    .feature-pill {
        padding: 0.6rem 0.9rem;
        font-size: 0.9rem;
    }

    .hero {
        height: auto;
        min-height: 60vh;
        padding: 100px 1rem 3rem;
    }

    .hero-logo {
        max-width: 100px;
    }

    .menu-screenshot {
        border-radius: 8px;
    }

    .footer-nav {
        gap: 1rem;
    }

    .about-content {
        font-size: 0.95rem;
    }

    .faq-item summary {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-item p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 0.6rem;
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .slide {
        width: 220px;
        height: 130px;
    }

    .btn-hero {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}
