* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066FF;
    --dark-blue: #0a1929;
    --darker-blue: #001e3c;
    --light-blue: #4D94FF;
    --sky-blue: #1a2332;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #b0c4de;
    --gradient-1: linear-gradient(135deg, #0066FF 0%, #00CCFF 100%);
    --gradient-2: linear-gradient(135deg, #4D94FF 0%, #0066FF 100%);
    --gradient-dark: linear-gradient(135deg, #0a1929 0%, #001e3c 100%);
    --shadow: 0 10px 40px rgba(0, 102, 255, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 102, 255, 0.2);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to bottom, #0a1929 0%, #001e3c 50%, #0a1929 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 102, 255, 0.3);
    border-bottom: 1px solid rgba(77, 148, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {light
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(176, 196, 222, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.card-1 {
    width: 300px;
    height: 200px;
    background: var(--gradient-1);
    top: 0;
    right: 0;
    opacity: 0.9;
}

.card-2 {
    width: 250px;
    height: 250px;
    background: var(--gradient-2);
    bottom: 50px;
    left: 0;
    opacity: 0.8;
}

.card-3 {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #00CCFF 0%, #0066FF 100%);
    top: 150px;
    right: 50px;
    opacity: 0.7;
}

/* Apps Section */
.apps-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.app-card {
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.9) 0%, rgba(0, 30, 60, 0.9) 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-dark);
    transition: all 0.4s ease;
    border: 2px solid rgba(77, 148, 255, 0.2);
    backdrop-filter: blur(10px);
}

.app-card:hover {
    transform: t0 20px 60px rgba(0, 102, 255, 0.4);
    border-color: var(--light-blue);
    background: linear-gradient(135deg, rgba(10, 25, 41, 1) 0%, rgba(0, 30, 60, 1) 100%
    border-color: var(--primary-blue);
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.ai-icon {
    background: var(--gradient-1);
    color: white;
}

.gaming-icon {
    background: var(--gradient-2);
    color: white;
}

.app-icon svg {
    width: 40px;
    height: 40px;
}

.app-title {
    font-size: 1.75rem;
    font-weight: white
    margin-bottom: 1rem;
    color: var(--text-dark);
}
rgba(176, 196, 222, 0.9
.app-description {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.app-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
rgba(0, 102, 255, 0.2);
    color: var(--light-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(77, 148, 255, 0.3)0px;
    font-size: 0.875rem;
    font-weight: 600;
}

.app-link {
    display: inline-flex;
    align-items: light
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.app-link:hover {
    gap: 1rem;
}

.app-link svg {
    transition: transform 0.3s ease;
}

.app-link:hover svg {
    transform: translateX(5px);
}

/* Features Section */#000a14 0%, #0a1929 100%);
    padding: 6rem 2rem;
    border-top: 1px solid rgba(77, 148, 255, 0.2);
    border-bottom: 1px solid rgba(77, 148, 255, 0.2)
    background: linear-gradient(135deg, var(--sky-blue) 0%, white 100%);
    padding: 6rem 2rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {rgba(10, 25, 41, 0.6);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(77, 148, 255, 0.2);
    backdrop-filter: blur(10px)
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.08);
    transition: 0 10px 40px rgba(0, 102, 255, 0.3);
    border-color: var(--light-blue);
    background: rgba(10, 25, 41, 0.9e;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3rwhite
    margin-bottom: 1rem;
}

.feature-item h3 {light
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-item p #000a14;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(77, 148, 255, 0.2)

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual {
        width: 100%;
        height: 400px;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .nav-links {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
