/* Hero Section */
.hero-section {
    padding: 16px;
    margin-bottom: 20px;
}

.hero-banner {
    height: 480px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.40) 100%), 
                url('https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?w=928&h=480&fit=crop&crop=center') center/cover;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 896px;
    padding: 0 50px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 32px;
}

/* Level Cards */
.editing-level {
    padding: 16px;
}

.level-card {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.level-card:hover {
    transform: translateY(-5px);
}

.level-image {
    flex: 1;
    height: 256px;
    background-size: cover;
    background-position: center;
}

.level-content {
    flex: 1;
    min-width: 288px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.level-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.level-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}

.level-description {
    flex: 1;
    font-size: 16px;
    color: var(--text-secondary);
}

.view-example-btn {
    padding: 0 16px;
    height: 32px;
    background: var(--accent-red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-example-btn:hover {
    background: var(--accent-red-hover);
    transform: scale(0.95);
}

.bottom-cta {
    padding: 32px 0;
    text-align: center;
}

/* Responsive Design for Home */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .level-card {
        flex-direction: column;
    }
    
    .level-image {
        height: 200px;
    }
    
    .level-details {
        flex-direction: column;
        align-items: flex-start;
    }
} 