/* Home Page Styles */

.home-page {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Featured Section */
.featured-section {
    padding: 6rem 2rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.game-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
}

.large-card {
    grid-column: span 2;
    min-height: 350px;
}

.showcase-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.showcase-bg-element {
    position: absolute;
    bottom: -2rem;
    right: 1rem;
    font-size: 10rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    user-select: none;
    transition: transform var(--transition-normal);
}

.showcase-card:hover .showcase-bg-element {
    transform: rotate(-15deg) scale(1.05);
}

.large-card .showcase-bg-element {
    font-size: 16rem;
    bottom: -4rem;
    right: -2rem;
}

.showcase-content {
    position: relative;
    z-index: 10;
}

.milestone-badge {
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 1.25rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: float 3s ease-in-out infinite;
}

/* Studio Updates */
.studio-updates {
    padding: 2rem 2rem 6rem;
}

.updates-list {
    max-width: 800px;
    margin: 0 auto;
}

.update-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.update-date {
    font-family: 'Outfit';
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    min-width: 80px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 2rem;
}

.update-body h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.update-body p {
    margin-bottom: 1rem;
}

/* Utilities */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.border-glow {
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

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

    .game-showcase-grid {
        grid-template-columns: 1fr;
    }

    .large-card {
        grid-column: span 1;
    }

    .update-item {
        flex-direction: column;
        gap: 1rem;
    }

    .update-date {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }
}