/*
Theme Name: Softogon
Author: Pablo Díaz
Description: Theme personalizado para Softogon
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

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

/* Header */
.site-header {
    background: #000;
    border-bottom: 3px solid #CC0000;
    padding: 20px 0;
}

.site-title {
    font-size: 48px;
    color: #CC0000;
    text-align: center;
    text-transform: uppercase;
}

.site-title a {
    color: #CC0000;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="%23333" stroke-width="1"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    text-align: center;
}

.software-title {
    font-size: 96px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
    margin-bottom: 20px;
}

.software-category {
    font-size: 24px;
    color: #CC0000;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Stats Bar */
.stats-bar {
    background: #1a1a1a;
    border-top: 3px solid #CC0000;
    border-bottom: 3px solid #CC0000;
    padding: 40px 0;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-label {
    font-size: 16px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 64px;
    font-family: 'Bebas Neue', sans-serif;
    color: #CC0000;
    line-height: 1;
}

.stat-value.price {
    font-size: 48px;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    text-transform: uppercase;
    color: #CC0000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #333;
}

/* Description Section */
.description-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    background: #1a1a1a;
    padding: 40px;
    border-left: 5px solid #CC0000;
}

.description-content p {
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    background: #0a0a0a;
    padding: 60px 0;
    margin: 60px 0;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.features-list li {
    background: #1a1a1a;
    padding: 20px 20px 20px 60px;
    border-left: 4px solid #CC0000;
    position: relative;
    font-size: 16px;
}

.features-list li::before {
    content: "▸";
    color: #CC0000;
    font-size: 24px;
    position: absolute;
    left: 25px;
    top: 18px;
}

/* Screenshots Section */
.screenshots-section {
    background: #0a0a0a;
    padding: 80px 0;
    margin: 60px 0;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-img {
    width: 100%;
    border: 3px solid #CC0000;
    border-radius: 5px;
}

/* Pros/Cons Grid */
.battle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.fighter-box {
    background: #1a1a1a;
    padding: 40px;
    border: 3px solid;
    position: relative;
}

.fighter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.pros-fighter {
    border-color: #00AA00;
}

.pros-fighter::before {
    background: #00AA00;
}

.cons-fighter {
    border-color: #CC0000;
}

.cons-fighter::before {
    background: #CC0000;
}

.fighter-title {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fighter-title.pros {
    color: #00FF00;
}

.fighter-title.cons {
    color: #FF0000;
}

.fighter-list {
    list-style: none;
}

.fighter-list li {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.fighter-list li:last-child {
    border-bottom: none;
}

.fighter-list li::before {
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.pros-fighter .fighter-list li::before {
    content: "✓";
    color: #00FF00;
}

.cons-fighter .fighter-list li::before {
    content: "✗";
    color: #FF0000;
}

/* Alternatives Section */
.alternatives-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    margin-top: 60px;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.alternative-card {
    background: #0a0a0a;
    padding: 40px;
    border: 3px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.alternative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #CC0000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.alternative-card:hover::before {
    transform: scaleX(1);
}

.alternative-card:hover {
    border-color: #CC0000;
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(204, 0, 0, 0.3);
}

.alternative-card h3 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.alternative-score {
    font-size: 56px;
    color: #CC0000;
    font-family: 'Bebas Neue', sans-serif;
    margin: 25px 0;
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
}

.vs-badge {
    background: #CC0000;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    border: 2px solid #CC0000;
}

.vs-badge:hover {
    background: transparent;
    color: #CC0000;
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border-top: 3px solid #CC0000;
}

.cta-button {
    display: inline-block;
    background: #CC0000;
    color: #fff;
    padding: 25px 60px;
    font-size: 32px;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    border: 3px solid #CC0000;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.3);
}

.cta-button:hover {
    background: #000;
    border-color: #FF0000;
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.6);
}

/* Footer */
.site-footer {
    background: #000;
    border-top: 3px solid #CC0000;
    padding: 40px 0;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .software-title {
        font-size: 48px;
    }
    
    .battle-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-value {
        font-size: 48px;
    }
}

/* Info Section */
.info-section {
    background: #0a0a0a;
    padding: 60px 0;
    margin: 40px 0;
}

.info-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.info-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-list li {
    padding: 20px 25px;
    background: #1a1a1a;
    border-left: 4px solid #CC0000;
    font-size: 18px;
    color: #ccc;
    transition: all 0.3s ease;
}

.info-list li:hover {
    transform: translateX(5px);
    border-left-color: #FF0000;
}

.info-list li strong {
    color: #CC0000;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #CC0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.2);
}

.pricing-card-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.pricing-card-value {
    font-size: 36px;
    font-family: 'Bebas Neue', sans-serif;
    color: #CC0000;
    line-height: 1.2;
}

.pricing-card-value.pricing-yes {
    color: #00FF00;
}

.pricing-card-value.pricing-no {
    color: #666;
    font-size: 28px;
}

/* Support Section */
.support-hours-badge {
    background: #CC0000;
    color: #fff;
    padding: 12px 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 auto 40px;
    display: block;
    text-align: center;
    max-width: 300px;
}

.support-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.support-channel-item {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.support-channel-item:hover {
    border-color: #CC0000;
    transform: translateY(-3px);
}

.support-channel-icon {
    font-size: 24px;
}

.support-channel-name {
    font-size: 16px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-value {
        font-size: 28px;
    }

    .support-channels-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.official-link {
    display: inline-block;
    margin-top: 20px;
    color: #CC0000;
    font-size: 18px;
    text-decoration: none;
    border: 2px solid #CC0000;
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.official-link:hover {
    background: #CC0000;
    color: #fff;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #1a1a1a;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #CC0000;
}

.breadcrumbs .separator {
    color: #555;
    margin: 0 10px;
}

.breadcrumbs .current {
    color: #CC0000;
    font-size: 14px;
}

/* ========================================
   RANKING PAGE — UFC Division Style
   ======================================== */

/* Division Hero */
.ranking-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 4px solid #CC0000;
}

.ranking-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(204, 0, 0, 0.03) 49px,
            rgba(204, 0, 0, 0.03) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(204, 0, 0, 0.03) 49px,
            rgba(204, 0, 0, 0.03) 50px
        );
    pointer-events: none;
}

.ranking-hero-content {
    position: relative;
}

.division-label {
    font-size: 16px;
    color: #CC0000;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.division-title {
    font-size: 96px;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 40px rgba(204, 0, 0, 0.4);
    line-height: 1;
    margin-bottom: 20px;
}

.division-desc {
    font-size: 18px;
    color: #888;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.division-desc p {
    margin: 0;
}

.division-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.division-stat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: #ccc;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Rankings Page Container */
.rankings-page {
    padding: 60px 0 80px;
    background: #000;
}

.rankings-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 50px;
    border-bottom: 3px solid #333;
    padding-bottom: 15px;
}

.rankings-header .section-title {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.rankings-updated {
    font-size: 14px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Champion Card ---- */
.champion-card {
    background: #0a0a0a;
    border: 3px solid #D4AF37;
    margin-bottom: 60px;
    overflow: hidden;
    position: relative;
}

.champion-belt-bar {
    background: linear-gradient(90deg, #8B6914, #D4AF37, #F5D060, #D4AF37, #8B6914);
    padding: 14px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.belt-icon {
    color: #000;
    font-size: 20px;
}

.belt-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.champion-body {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
}

.champion-visual {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 280px;
}

.champion-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.champion-info {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.champion-name {
    font-size: 52px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
}

.champion-name a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.champion-name a:hover {
    color: #D4AF37;
}

.champion-score-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.champion-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: #D4AF37;
    line-height: 1;
    flex-shrink: 0;
}

.champion-score span {
    font-size: 28px;
    color: #888;
}

.champion-score-bar {
    flex: 1;
    height: 10px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
}

.champion-score-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B6914, #D4AF37, #F5D060);
    border-radius: 5px;
    transition: width 0.6s ease;
}

.champion-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.champion-meta-item {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 6px 16px;
    font-size: 13px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.champion-tag-green {
    border-color: #00AA00;
    color: #00FF00;
}

.champion-best-for {
    font-size: 15px;
    color: #888;
    margin-bottom: 25px;
}

.champion-cta {
    display: inline-block;
    background: #D4AF37;
    color: #000;
    padding: 14px 35px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
    align-self: flex-start;
}

.champion-cta:hover {
    background: transparent;
    color: #D4AF37;
}

/* ---- Contenders Header ---- */
.contenders-header {
    margin-bottom: 30px;
}

.contenders-title {
    font-size: 36px;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    color: #CC0000;
    letter-spacing: 3px;
    padding-bottom: 12px;
    border-bottom: 2px solid #333;
}

/* ---- Ranked Row ---- */
.ranked-row {
    display: grid;
    grid-template-columns: 80px 80px 1fr 160px 120px;
    align-items: center;
    gap: 25px;
    padding: 20px 25px;
    background: #0a0a0a;
    border: 2px solid #1a1a1a;
    border-left: 4px solid #333;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.ranked-row:hover {
    border-left-color: #CC0000;
    background: #111;
    transform: translateX(5px);
}

.ranked-row--top3 {
    border-left-color: #CC0000;
    background: #0f0f0f;
}

/* Position */
.ranked-position {
    text-align: center;
    position: relative;
}

.ranked-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #555;
    line-height: 1;
}

.ranked-row--top3 .ranked-number {
    color: #CC0000;
}

.ranked-movement {
    display: block;
    font-size: 10px;
    margin-top: 2px;
}

.ranked-movement--up {
    color: #00FF00;
}

/* Thumbnail */
.ranked-thumb-wrap {
    width: 80px;
    height: 55px;
    overflow: hidden;
    border: 2px solid #333;
    background: #111;
}

.ranked-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info */
.ranked-info {
    min-width: 0;
}

.ranked-name {
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranked-name a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.ranked-name a:hover {
    color: #CC0000;
}

.ranked-best-for {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.ranked-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ranked-tag {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #1a1a1a;
    padding: 3px 10px;
    border: 1px solid #333;
}

.ranked-tag--green {
    color: #00FF00;
    border-color: #00AA00;
}

/* Score Column */
.ranked-score-col {
    text-align: center;
}

.ranked-score-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: #CC0000;
    line-height: 1;
    margin-bottom: 6px;
}

.ranked-row--top3 .ranked-score-value {
    color: #FF0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.ranked-score-bar {
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
}

.ranked-score-fill {
    height: 100%;
    background: #CC0000;
    border-radius: 3px;
    transition: width 0.6s ease;
}

.ranked-row--top3 .ranked-score-fill {
    background: linear-gradient(90deg, #CC0000, #FF3333);
}

/* Action */
.ranked-action {
    text-align: center;
}

.ranked-cta {
    display: inline-block;
    background: transparent;
    color: #CC0000;
    padding: 10px 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    border: 2px solid #CC0000;
    transition: all 0.3s ease;
}

.ranked-cta:hover {
    background: #CC0000;
    color: #fff;
}

/* Empty State */
.rankings-empty {
    text-align: center;
    padding: 100px 20px;
}

.rankings-empty p {
    color: #666;
    font-size: 18px;
    margin-top: 15px;
}

/* ---- Archive: Division Cards Grid ---- */
.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.division-card {
    background: #0a0a0a;
    border: 2px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.division-card:hover {
    border-color: #CC0000;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(204, 0, 0, 0.25);
}

.division-card-top {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #1a1a1a;
}

.division-card-count {
    font-size: 12px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.division-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    text-transform: uppercase;
    color: #CC0000;
    letter-spacing: 2px;
    line-height: 1;
}

.division-card-champion {
    padding: 15px 30px;
    border-bottom: 1px solid #1a1a1a;
}

.division-card-belt {
    font-size: 11px;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.division-card-champ-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.division-card-champ-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
}

.division-card-champ-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #D4AF37;
}

.division-card-contenders {
    padding: 12px 30px;
    border-bottom: 1px solid #1a1a1a;
}

.division-card-contender {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: #888;
}

.division-card-rank {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #555;
    width: 30px;
    flex-shrink: 0;
}

.division-card-c-name {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.division-card-c-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #CC0000;
}

.division-card-footer {
    padding: 18px 30px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: #CC0000;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.division-card:hover .division-card-footer {
    background: #CC0000;
    color: #fff;
}

/* ---- Ranking Responsive ---- */
@media (max-width: 1024px) {
    .champion-body {
        grid-template-columns: 300px 1fr;
    }

    .champion-name {
        font-size: 40px;
    }

    .ranked-row {
        grid-template-columns: 60px 60px 1fr 120px 100px;
        gap: 15px;
        padding: 16px 20px;
    }

    .ranked-thumb-wrap {
        width: 60px;
        height: 42px;
    }
}

@media (max-width: 768px) {
    .division-title {
        font-size: 56px;
    }

    .rankings-header {
        flex-direction: column;
        gap: 10px;
    }

    /* Champion stacks vertically */
    .champion-body {
        grid-template-columns: 1fr;
    }

    .champion-visual {
        min-height: 200px;
    }

    .champion-info {
        padding: 30px 25px;
    }

    .champion-name {
        font-size: 36px;
    }

    .champion-score {
        font-size: 42px;
    }

    /* Ranked row becomes card layout */
    .ranked-row {
        grid-template-columns: 50px 1fr auto;
        grid-template-rows: auto auto;
        gap: 10px 15px;
        padding: 20px 15px;
    }

    .ranked-thumb-wrap {
        display: none;
    }

    .ranked-position {
        grid-row: 1 / 3;
        align-self: center;
    }

    .ranked-info {
        grid-column: 2;
        grid-row: 1;
    }

    .ranked-score-col {
        grid-column: 3;
        grid-row: 1 / 3;
        align-self: center;
    }

    .ranked-action {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
    }

    .ranked-name {
        font-size: 20px;
    }

    .ranked-score-value {
        font-size: 32px;
    }

    .ranked-score-bar {
        display: none;
    }
}