:root {
    /* Dark Mode Colors */
    --bg-primary: #121212;
    --bg-secondary: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --accent-color: #BB86FC;
    --accent-variant: #3700B3;
    --error-color: #CF6679;
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --background-color: #f8f9fa;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1E1E2C;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

main {
    padding: 4rem 0;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: calc(100vh - 120px);
    text-align: center;
    padding-top: 2rem;
}

.hero-title {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.hero-subtitle {
    margin-bottom: 1.5rem;
    color: #888;
}

.experience-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.experience-btn {
    width: 100%;
    max-width: 350px;
    padding: 2rem;
    border: 2px solid var(--accent-color);
    background-color: transparent;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.experience-btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    transform: scale(1.05);
}

.experience-btn.fun {
    border-color: #FF6B6B;
}

.experience-btn.fun:hover {
    background-color: #FF6B6B;
}

.experience-btn.ai {
    border-color: #4ECDC4;
}

.experience-btn.ai:hover {
    background-color: #4ECDC4;
}

.experience-btn.standard {
    border-color: #A8DADC;
}

.experience-btn.standard:hover {
    background-color: #A8DADC;
}

.experience-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #888;
}

.experience-btn.disabled:hover {
    transform: scale(1);
}

/* Standard Experience Link Styles */
.standard-link {
    background-color: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.standard-link:hover {
    background-color: rgba(74, 144, 226, 0.2);
    transform: scale(1.02);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-section {
    margin: 4rem 0;
}

.site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1E1E2C;
}

.logo-container {
    max-width: 200px;
    width: 100%;
}

.site-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 44, 0.9);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.footer-contact {
    display: flex;
    gap: 2rem;
}

.footer-contact a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #357ABD;
}

/* Standard Experience Styles */
.standard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.standard-hero {
    margin-bottom: 3rem;
}

.standard-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4A90E2;
}

.standard-features {
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #4A90E2;
}

.standard-cta {
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    padding: 2rem;
}

.cta-button {
    background-color: #4A90E2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #357ABD;
}

/* Standard Experience Page Styles */
.standard-experience {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: #e0e0e0;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    color: #a0a0a0;
}

.services-preview {
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: rgba(40, 40, 40, 0.3);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #e0e0e0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #f0f0f0;
}

.service-card p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #357ABD;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2568a3;
}

.value-proposition {
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.value-proposition h2 {
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.value-proposition ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.value-proposition ul li {
    background-color: rgba(40, 40, 40, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    color: #a0a0a0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .experience-buttons {
        flex-direction: column;
        align-items: center;
    }

    .experience-btn {
        max-width: 100%;
        width: 90%;
        margin-bottom: 1rem;
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .site-header {
        padding: 0.5rem 1rem;
    }

    .logo-container {
        max-width: 190px;
    }

    .hero {
        padding-top: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .experience-buttons {
        max-width: 300px;
    }

    .experience-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .logo-container {
        max-width: 160px;
    }

    .experience-buttons {
        max-width: 250px;
    }

    .experience-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Responsive Adjustments for Standard Experience */
@media screen and (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Adjustments for Standard Experience Page */
@media screen and (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility and Touch Improvements */
@media (hover: hover) {
    .experience-btn:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }
}

@media (pointer: coarse) {
    .experience-btn {
        padding: 1rem 2rem;
    }
}
