/* Patch Notes page styles */
.patch-notes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.patch-notes-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.patch-notes-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.version-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
}

.patch-notes-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.patch-notes-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.brand-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.brand-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: #fff;
}

.hero-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-content {
    color: #fff;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.patch-notes-content {
    padding: 2rem;
}

/* Consistent Card Styling - All cards have same transparent background */
.patch-card {
    background: rgba(30, 32, 45, 0.6);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.patch-card:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Highlight class only adds subtle border, same background */
.patch-card.highlight {
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.patch-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.patch-card-header i {
    font-size: 2rem;
    color: #667eea;
}

.patch-card-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    flex: 1;
}

/* New Heroes Showcase */
.new-heroes-showcase {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.hero-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.hero-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.hero-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid rgba(102, 126, 234, 0.5);
    transition: all 0.3s ease;
}

.hero-item:hover .hero-icon-large {
    border-color: rgba(102, 126, 234, 1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.hero-item h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-role {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

/* Patch List */
.patch-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.patch-list-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-align: left;
}

.patch-list-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(5px);
}

.item-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    text-align: left;
}

.patch-list-item > i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.patch-list-item > span {
    flex: 1;
    text-align: left;
}

.patch-list-item span {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Preview Button */
.preview-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: #fff;
}

/* Subsections */
.patch-subsection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0,0,0,0.2);
    border-radius: 0.5rem;
    border-left: 4px solid #667eea;
}

.patch-subsection h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Color Legend */
.color-legend {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 0.5rem;
}

.legend-group {
    margin-bottom: 1rem;
}

.legend-group:last-child {
    margin-bottom: 0;
}

.legend-group strong {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

/* Footer CTA */
.cta-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 1rem;
    margin: 2rem;
    color: #fff;
}

.cta-footer h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-footer p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .patch-notes-title {
        font-size: 2rem;
    }

    .patch-notes-hero {
        padding: 2rem 1rem;
    }

    .patch-card {
        padding: 1.5rem;
    }

    .patch-card-header h2 {
        font-size: 1.4rem;
    }

    .patch-list-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .preview-btn {
        align-self: flex-end;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .new-heroes-showcase {
        gap: 1.5rem;
    }

    .hero-icon-large {
        width: 100px;
    }
}

