/* style.css (No changes needed, keeping it here for completeness) */

:root {
    --black-background: #0D0D0D;
    --dark-grey: #1A1A1A;
    --glitter-gold: linear-gradient(135deg, #FFD700, #DAA520, #FFD700); /* A gradient for a glittery effect */
    --text-color: #E0E0E0;
    --accent-color: #DAA520; /* Gold accent */
    --glass-background: rgba(255, 255, 255, 0.08); /* Light translucency for glass */
    --glass-border: rgba(255, 255, 255, 0.15); /* Slightly stronger border */
    --glass-shadow: rgba(0, 0, 0, 0.25);
    --hover-gold: #FFC107;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--black-background);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll due to glass shadows */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--glitter-gold);
    border-radius: 2px;
}

/* Glassmorphism Effect */
.glass-effect {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

/* Header & Navigation */
.hero-section {
    background: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitGzBlSSEZ2fkYIv-HlrLeCTpYcs3yXbPlfQxe_zACI2cUfynHze1Gc2joNBlLc2aI2Y93t3SDq8N1GYtEGl5EVD81-WBIRaQmObvMkPpxsJ8c8Nf5rmBIhDxznHXkyvP3VHNtqBJ86ndPufV3h0fVWTOxHPh0uE4Ayi_K4yDUn2049938PGNnM9eMEo0/s1024/slot69-hoki69-gacor69.png') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 50px; /* Space for fixed nav */
}

.navbar {
    position: fixed;
    top: 20px; /* Spacing from top */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px); /* Adjust width for margin */
    max-width: 1160px; /* Match container width - 40px */
    z-index: 1000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    background: var(--glitter-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--glitter-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-content {
    max-width: 1080px;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    line-height: 1.1;
    background: var(--glitter-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 80px;
    color: var(--text-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--glitter-gold); /* Initial background for buttons */
    color: var(--black-background);
    border: none;
    outline: none;
}

.glass-button {
    background: rgba(255, 255, 255, 0.15); /* Slightly more opaque for buttons */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-weight: 600;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid var(--hover-gold);
    color: var(--hover-gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
}

.glass-button.secondary {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    margin-left: 20px;
}

.glass-button.secondary:hover {
    background: rgba(218, 165, 32, 0.1);
    color: var(--hover-gold);
}


/* About Section */
.about-section {
    text-align: center;
    background-color: var(--dark-grey);
    padding: 80px 20px;
    border-radius: 20px;
    margin-top: -60px; /* Pull it slightly over the hero */
    position: relative; /* For z-index if needed */
    z-index: 1;
}

.about-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 20px auto;
}

/* Features Section */
.features-section {
    background-color: var(--black-background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card h3 {
    color: var(--accent-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1em;
    color: var(--text-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 var(--glass-shadow);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-grey);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-card h4 {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2em;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 var(--glass-shadow);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background-color: var(--black-background);
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--text-color);
}

/* Footer */
.footer {
    background-color: var(--dark-grey);
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    margin-bottom: 15px;
    font-size: 0.9em;
    color: var(--text-color);
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
        top: 10px;
        width: calc(100% - 20px);
    }

    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 0 15px 10px;
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1em;
    }

    .glass-button.secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .section-title {
        font-size: 2em;
    }

    .about-section,
    .features-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }

    .features-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .glass-button.secondary {
        margin-left: 0;
    }
}