:root {
    --primary: #FF9933;
    --background: #0A0A0A;
    --surface: #263238;
    --text: #EAEAEA;
    --secondary: #8FA4C7;
    --accent-dawn: #647693;
    --accent-mist: #2d3ac4;
    --black: #000000;
    --white: #FFFFFF;
    --card-bg: rgba(38, 50, 56, 0.5);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding-top: 80px;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    background-color: rgba(38, 50, 56, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 36px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.install-button {
    background: var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    color: var(--white) !important;
    font-weight: 600 !important;
    transition: transform 0.3s ease !important;
}

.install-button:hover {
    transform: translateY(-2px);
}

main {
    min-height: 100vh;
}

.hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.accent-text {
    background: linear-gradient(270deg, var(--primary), var(--accent-mist), var(--primary));
    background-size: 600% 600%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 48px;
    color: var(--text);
    font-weight: 600;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    justify-content: center;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--accent-mist));
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(255, 153, 51, 0.4);
}

.button-icon {
    font-size: 1.2rem;
}

.playground-button {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 25px rgba(255, 153, 51, 0.6);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 1rem;
    color: var(--secondary);
}

.hero-image {
    position: relative;
}

.hero-image {
    /* Placeholder styles for future image/gif */
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, var(--primary), var(--accent-mist));
    border-radius: 3px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px) rotate3d(1, 1, 0, 3deg);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #F5F5F5;
}

.feature-card p {
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 24px;
}

.about-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-content a:hover {
    color: var(--accent-mist);
}

.developer-links {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.developer-links p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--secondary);
}

.developer-links a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 8px;
}

.developer-links a:hover {
    text-decoration: underline;
    color: var(--white);
}
                            
footer {
    padding: 60px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 100px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links img {
    height: 20px;
    width: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Newbie Features Section */
.newbie-features {
    margin-top: 80px;
}

.newbie-features .section-header {
    margin-bottom: 40px;
}

.newbie-features .section-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent-mist));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newbie-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.newbie-features .feature-card {
    padding: 24px;
}

.newbie-features .feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.newbie-features .feature-card p {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--surface);
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1000;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--white);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .newbie-features .section-header h3 {
        font-size: 1.8rem;
    }
    
    .newbie-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Reveal Animations */
.feature-card, .hero-content, .section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.revealed, .hero-content.revealed, .section-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1).revealed { transition-delay: 0.1s; }
.feature-card:nth-child(2).revealed { transition-delay: 0.3s; }
.feature-card:nth-child(3).revealed { transition-delay: 0.5s; }

/* Loading animation for hero */
.hero-content {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.waitlist-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.waitlist-form input {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--surface);
    background-color: var(--card-bg);
    color: var(--text);
    font-size: 1rem;
    width: 300px;
}

.waitlist-form button {
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.waitlist-form button:hover {
    background-color: #e68a00;
}

#response-message {
    text-align: center;
    min-height: 24px;
    color: var(--primary);
}

/* End of styles */
