/* For Game Studios - Page Specific Styles */

/* =============================================
   Commercials & Launch Section Enhancements
   ============================================= */

/* Section Background */
.commercials-launch-section {
    background: var(--black);
    color: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.commercials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    z-index: 1;
}

.commercials-launch-section .container {
    position: relative;
    z-index: 2;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-primary);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Commercial Overview Stats */
.commercial-overview {
    margin-bottom: 4rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.overview-stat {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.overview-stat:hover {
    transform: translateY(-5px);
    border-color: var(--green-primary);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.1);
}

.overview-stat .stat-icon {
    width: 3rem;
    height: 3rem;
    background: var(--green-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.overview-stat .stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* FIX: Improved font sizes for better visibility */
.overview-stat .stat-value {
    font-size: 1.5rem; /* Increased from smaller size */
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.overview-stat .stat-label {
    font-size: 0.875rem; /* Standardized size */
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Content Grid Layout */
.commercials-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Commercial Features Enhanced */
.commercial-features-enhanced {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.features-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.features-icon {
    width: 3rem;
    height: 3rem;
    background: var(--green-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.features-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.features-content p {
    color: var(--gray-400);
    font-size: 1rem;
}

/* Commercial Features Grid */
.commercial-features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commercial-feature-enhanced {
    background: var(--black);
    border: 1px solid var(--gray-700);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.commercial-feature-enhanced:hover {
    border-color: var(--green-primary);
    transform: translateY(-2px);
}

.feature-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--green-primary);
    color: var(--black);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
}

.icon-glow {
    position: absolute;
    inset: -2px;
    background: var(--green-primary);
    border-radius: 0.75rem;
    opacity: 0.2;
    filter: blur(4px);
    z-index: -1;
}

.feature-title h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.feature-badge {
    background: var(--green-primary);
    color: var(--black);
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.detail-item i {
    color: var(--green-primary);
    width: 1rem;
    text-align: center;
}

/* Launch Timeline Enhanced */
.launch-timeline-enhanced {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.timeline-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timeline-icon {
    width: 3rem;
    height: 3rem;
    background: var(--green-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.timeline-content p {
    color: var(--gray-400);
    font-size: 1rem;
}

/* Timeline Weeks Container */
.timeline-weeks-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-week-card {
    background: var(--black);
    border: 1px solid var(--gray-700);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.timeline-week-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-2px);
}

.timeline-week-card.final-week {
    border-color: var(--green-primary);
    background: linear-gradient(135deg, var(--black) 0%, #001a0a 100%);
}

.week-header {
    background: var(--gray-800);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.final-week .week-header {
    background: var(--green-primary);
    color: var(--black);
}

.week-number {
    background: var(--green-primary);
    color: var(--black);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.final-week .week-number {
    background: var(--black);
    color: var(--green-primary);
}

.week-label {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.final-week .week-label {
    color: var(--black);
}

.week-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--black);
    color: var(--green-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.final-week .week-status {
    background: var(--white);
    color: var(--black);
}

.week-content {
    padding: 1.5rem;
}

.week-content h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.week-tasks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.week-tasks li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-300);
    font-size: 0.875rem;
}

.week-tasks i {
    color: var(--green-primary);
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

/* Launch Success Metrics */
.launch-success-metrics {
    background: var(--black);
    border: 1px solid var(--gray-700);
    border-radius: 1rem;
    padding: 1.5rem;
}

.launch-success-metrics h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    text-align: center;
}

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

.metric-item {
    text-align: center;
    padding: 1rem;
    background: var(--black-light);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-800);
}

.metric-icon {
    width: 2rem;
    height: 2rem;
    background: var(--green-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 0.875rem;
}

/* FIX: Improved metric font sizes */
.metric-value {
    display: block;
    font-size: 1.25rem; /* Increased for better visibility */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.metric-label {
    display: block;
    font-size: 0.75rem; /* Appropriate small size */
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================
   Responsive Design
   ============================================= */

@media (max-width: 1024px) {
    .commercials-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .overview-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .overview-stat {
        padding: 1.5rem 1rem;
    }
    
    .overview-stat .stat-value {
        font-size: 1.25rem;
    }
    
    .commercial-features-enhanced,
    .launch-timeline-enhanced {
        padding: 1.5rem;
    }
    
    .features-header,
    .timeline-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .week-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .week-status {
        margin-left: 0;
    }
    
    .overview-stat .stat-value {
        font-size: 1.125rem;
    }
}
