/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a2e;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* Loading screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(57, 255, 20, 0.2);
    border-top: 4px solid #39FF14;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #39FF14, #2ecc71, #39FF14);
    background-size: 200% 200%;
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(57, 255, 20, 0.3);
    animation: headerGlow 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.3);
}

@keyframes headerGlow {
    0%, 100% { 
        background-position: 0% 50%; 
        box-shadow: 0 2px 20px rgba(57, 255, 20, 0.3);
    }
    50% { 
        background-position: 100% 50%; 
        box-shadow: 0 4px 30px rgba(57, 255, 20, 0.5);
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 48px;
    width: auto;
}

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

.nav-menu a {
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    border-radius: 25px;
}

.nav-menu a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-menu a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 26, 46, 0.3);
    color: #0f0f0f;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a1a2e;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 140px;
    display: flex;
    align-items: center;
}

/* Hero Section for Index Pages Only */
.hero-index {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before,
.hero-index::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2339FF14" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

.hero::after,
.hero-index::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #39FF14;
    border-radius: 50%;
    animation: float 8s linear infinite;
    box-shadow: 0 0 10px #39FF14;
}

.particle:nth-child(1) { left: 10%; animation-delay: -2s; animation-duration: 6s; }
.particle:nth-child(2) { left: 20%; animation-delay: -4s; animation-duration: 8s; }
.particle:nth-child(3) { left: 30%; animation-delay: -1s; animation-duration: 7s; }
.particle:nth-child(4) { left: 40%; animation-delay: -3s; animation-duration: 9s; }
.particle:nth-child(5) { left: 50%; animation-delay: -5s; animation-duration: 6s; }
.particle:nth-child(6) { left: 60%; animation-delay: -2s; animation-duration: 8s; }
.particle:nth-child(7) { left: 70%; animation-delay: -4s; animation-duration: 7s; }
.particle:nth-child(8) { left: 80%; animation-delay: -1s; animation-duration: 9s; }
.particle:nth-child(9) { left: 90%; animation-delay: -3s; animation-duration: 6s; }

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes float {
    0% { 
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #39FF14, #00ff88, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate, gradientShift 4s ease-in-out infinite, slideInUp 1s ease-out;
    text-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Hero Title for Index Pages Only */
.hero-index .hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

@keyframes glow {
    from { 
        filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.5));
    }
    to { 
        filter: drop-shadow(0 0 40px rgba(57, 255, 20, 0.9)) drop-shadow(0 0 60px rgba(57, 255, 20, 0.4));
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.4;
    animation: slideInUp 1s ease-out 0.3s both;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Subtitle for Index Pages Only */
.hero-index .hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
}

/* Business Overview Section */
.business-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
}

.business-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-card {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(57, 255, 20, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(57, 255, 20, 0.3),
        0 0 0 1px rgba(57, 255, 20, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(57, 255, 20, 0.6);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.3));
}

.info-card:hover .info-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.8));
}

.info-card h3 {
    color: #39FF14;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    transition: all 0.3s ease;
}

.info-card:hover h3 {
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
    transform: translateY(-2px);
}

.info-card p {
    color: #b0b0b0;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.info-card:hover p {
    color: #d0d0d0;
}

/* Upcoming Releases Section */
.upcoming-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f3460, #16213e);
}

.upcoming-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-card {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border-radius: 15px;
    padding: 3rem 2rem;
    border: 2px solid rgba(57, 255, 20, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.coming-soon-card h3 {
    color: #39FF14;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.coming-soon-card p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Pitch Section */
.pitch-section {
    padding: 4rem 0;
    background: #1a1a2e;
}

.pitch-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pitch-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #39FF14, #2ecc71, #39FF14);
    background-size: 200% 200%;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: buttonPulse 3s ease-in-out infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-position: 100% 0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(57, 255, 20, 0.4),
        0 0 0 3px rgba(57, 255, 20, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(57, 255, 20, 0.6);
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(57, 255, 20, 0); }
}

.business-card {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39FF14, #2ecc71);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(57, 255, 20, 0.2);
}

.card-icon {
    margin-bottom: 2rem;
    text-align: center;
}

.business-logo {
    height: 60px;
    width: auto;
}

.course-icon {
    font-size: 3rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(45deg, #39FF14, #2ecc71);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 60px;
    text-align: center;
}

.card-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #39FF14;
    text-align: center;
}

.card-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.card-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: #d0d0d0;
    position: relative;
    padding-left: 1.5rem;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #39FF14;
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #39FF14, #2ecc71);
    color: #1a1a2e;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #2ecc71, #39FF14);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(57, 255, 20, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #39FF14;
    border: 2px solid #39FF14;
}

.btn-secondary:hover {
    background: #39FF14;
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(57, 255, 20, 0.3);
}

/* Company Info Section */
.company-info {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f3460, #16213e);
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #39FF14;
    text-align: center;
    font-weight: 700;
    text-shadow: 
        0 0 10px rgba(57, 255, 20, 0.7),
        0 0 20px rgba(57, 255, 20, 0.5),
        0 0 30px rgba(57, 255, 20, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #39FF14, transparent);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}

@keyframes titleGlow {
    from {
        text-shadow: 
            0 0 10px rgba(57, 255, 20, 0.7),
            0 0 20px rgba(57, 255, 20, 0.5),
            0 0 30px rgba(57, 255, 20, 0.3);
    }
    to {
        text-shadow: 
            0 0 15px rgba(57, 255, 20, 0.9),
            0 0 25px rgba(57, 255, 20, 0.7),
            0 0 35px rgba(57, 255, 20, 0.5);
    }
}

.company-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #39FF14;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    height: 30px;
    width: auto;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #39FF14;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 120px;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
        letter-spacing: 0.5px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    /* Index page mobile adjustments */
    .hero-index {
        min-height: 100vh;
        padding: 6rem 0;
    }
    
    .hero-index .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero-index .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(57, 255, 20, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .business-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 20px;
    }

    .business-card {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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


/* Bootcamp Logo Styles */
.business-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}


/* Upcoming Releases Section */
.upcoming-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.upcoming-content {
    text-align: center;
}

.coming-soon-card {
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid #39FF14;
    border-radius: 15px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-card h3 {
    font-size: 2.5rem;
    color: #39FF14;
    margin-bottom: 1rem;
}

.coming-soon-card p {
    font-size: 1.2rem;
    color: #b0b0b0;
}

/* Game Pitch Section */
.pitch-section {
    padding: 4rem 0;
    background: #0f0f23;
}

.pitch-content {
    text-align: center;
}

.pitch-content p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #39FF14, #2ecc71);
    color: #0f0f23;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(57, 255, 20, 0.3);
}


/* Business Overview Section */
.business-overview {
    padding: 4rem 0;
    background: #1a1a2e;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(145deg, #16213e, #0f3460);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-top: 3px solid #39FF14;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    color: #39FF14;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

