/* Upcoming Events Section */
.upcoming-events {
    padding: 100px 50px;
    background: #000;
    position: relative;
}

.upcoming-events h2 {
    text-align: center;
    font-size: 48px;
    color: #8a2be2;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.countdown-timer {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.countdown-timer h3 {
    color: #9370db;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.timer-unit .number {
    font-size: 48px;
    color: #8a2be2;
    font-weight: bold;
    display: block;
}

.timer-unit .label {
    font-size: 14px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.event-item {
    background: #0a0a0a;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

.event-header {
    background: linear-gradient(135deg, #8a2be2, #6a0dad);
    padding: 20px;
    text-align: center;
}

.event-date-display {
    font-size: 36px;
    font-weight: bold;
    color: white;
}

.event-month {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-body {
    padding: 30px;
}

.event-body h3 {
    color: #8a2be2;
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.fighters-matchup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 10px;
}

.fighter-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.vs-text {
    color: #8a2be2;
    font-weight: bold;
    font-size: 16px;
}

.event-details-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.event-details-list li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

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

.event-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.ticket-btn, .save-date-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #8a2be2;
    background: #8a2be2;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.save-date-btn {
    background: transparent;
    color: #8a2be2;
}

.ticket-btn:hover {
    background: #7a1fd2;
    border-color: #7a1fd2;
}

.save-date-btn:hover {
    background: rgba(138, 43, 226, 0.1);
}

/* Fighter Spotlight Section */
.fighter-spotlight {
    padding: 100px 50px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.fighter-spotlight h2 {
    text-align: center;
    font-size: 48px;
    color: #8a2be2;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.spotlight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fighter-image-container {
    position: relative;
}

.fighter-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.4);
}

.champion-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.fighter-info {
    color: white;
}

.fighter-info h3 {
    font-size: 42px;
    color: #8a2be2;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fighter-nickname {
    font-size: 24px;
    color: #9370db;
    font-style: italic;
    margin-bottom: 30px;
}

.fighter-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.stat-number {
    font-size: 32px;
    color: #8a2be2;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fighter-bio {
    color: #ddd;
    line-height: 1.8;
    margin: 30px 0;
    font-size: 16px;
}

.achievements {
    margin: 30px 0;
}

.achievements h4 {
    color: #8a2be2;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.achievements ul {
    list-style: none;
    padding: 0;
}

.achievements li {
    color: #ccc;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.achievements li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #8a2be2;
    font-size: 14px;
    top: 12px;
}

.view-profile-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #8a2be2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.view-profile-btn:hover {
    background: #7a1fd2;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5);
}

/* Live Stats Section */
.live-stats {
    padding: 100px 50px;
    background: #000;
}

.live-stats h2 {
    font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    text-align: center;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}

.rankings-subtitle {
    text-align: center;
    color: #8a2be2;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.champions-section {
    margin-bottom: 60px;
}

.champions-section h3 {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    text-align: center;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 2px solid #8a2be2;
    padding-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.champions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.champion-card {
    background: #0a0a0a;
    border: 3px solid rgba(138, 43, 226, 0.5);
    border-left: 5px solid #8a2be2;
    border-radius: 0;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.champion-card:hover {
    transform: translateY(-5px);
    border-left-color: #9370db;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}

.belt-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #8a2be2;
    font-weight: bold;
}

.weight-class {
    font-family: Georgia, 'Times New Roman', serif;
    color: #9370db;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.champion-name {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.title-defenses {
    font-family: Georgia, 'Times New Roman', serif;
    color: #aaa;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leaderboard-section {
    margin-top: 60px;
}

.leaderboard-section h3 {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    text-align: center;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 2px solid #8a2be2;
    padding-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.leaderboard-table {
    background: #0a0a0a;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 0;
    overflow: hidden;
}

.leaderboard-table table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead {
    background: linear-gradient(135deg, #8a2be2, #6a0dad);
}

.leaderboard-table th {
    padding: 20px;
    color: white;
    text-align: left;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.leaderboard-table td {
    padding: 20px;
    color: #ddd;
    font-family: Georgia, 'Times New Roman', serif;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    font-size: 15px;
}

.leaderboard-table tr:hover {
    background: rgba(138, 43, 226, 0.05);
}

.rank-number {
    font-size: 24px;
    font-weight: bold;
    color: #8a2be2;
}

.fighter-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fighter-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(138, 43, 226, 0.6);
    object-fit: cover;
}

.stat-highlight {
    color: #8a2be2;
    font-weight: bold;
}

/* Responsive Design */
/* Large Desktop/Tablet */
@media (max-width: 1366px) and (min-width: 1200px) {
    .upcoming-events, .fighter-spotlight, .live-stats, .boxing-news {
        padding: 90px 40px;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .upcoming-events, .fighter-spotlight, .live-stats, .boxing-news {
        padding: 85px 35px;
    }
    
    .spotlight-container {
        gap: 50px;
    }
}

/* iPad Pro Landscape */
@media (max-width: 1366px) and (min-width: 1024px) and (orientation: landscape) {
    .fighter-image-container img {
        height: 550px;
    }
}

/* iPad Pro Portrait */
@media (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .spotlight-container {
        grid-template-columns: 1fr;
    }
    
    .fighter-image-container img {
        height: 500px;
    }
}

@media (max-width: 1024px) {
    .spotlight-container {
        grid-template-columns: 1fr;
    }
    
    .fighter-image-container img {
        height: 500px;
    }
    
    .upcoming-events, .fighter-spotlight, .live-stats, .boxing-news {
        padding: 80px 30px;
    }
}

/* Tablet 921x1368 */
@media (max-width: 921px) and (min-width: 901px) {
    .upcoming-events h2, .fighter-spotlight h2, .live-stats h2, .boxing-news h2 {
        font-size: 42px;
    }
}

/* Standard Tablets */
@media (max-width: 900px) {
    .upcoming-events, .fighter-spotlight, .live-stats, .boxing-news {
        padding: 75px 30px;
    }
    
    .upcoming-events h2, .fighter-spotlight h2, .live-stats h2, .boxing-news h2 {
        font-size: 40px;
    }
    
    .fighter-info h3 {
        font-size: 36px;
    }
}

/* iPad Air Portrait */
@media (max-width: 834px) and (min-width: 768px) and (orientation: portrait) {
    .fighter-image-container img {
        height: 480px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) and (min-width: 768px) {
    .upcoming-events, .fighter-spotlight, .live-stats, .boxing-news {
        padding: 70px 32px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .upcoming-events, .fighter-spotlight, .live-stats, .boxing-news {
        padding: 60px 20px;
    }
    
    .upcoming-events h2, .fighter-spotlight h2, .live-stats h2, .boxing-news h2 {
        font-size: 26px !important;
        letter-spacing: 0.5px !important;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .timer-display {
        gap: 15px;
    }
    
    .timer-unit .number {
        font-size: 32px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .fighter-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fighter-info h3 {
        font-size: 32px;
    }
    
    .champions-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-table {
        overflow-x: auto;
    }
    
    .fighter-image-container img {
        height: auto;
        object-fit: contain;
    }
}

/* Mobile Portrait */
@media (max-width: 767px) {
    .upcoming-events, .fighter-spotlight, .live-stats, .boxing-news {
        padding: 55px 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .upcoming-events, .fighter-spotlight, .live-stats, .boxing-news {
        padding: 50px 15px;
    }
    
    .upcoming-events h2, .fighter-spotlight h2, .live-stats h2, .boxing-news h2 {
        font-size: 22px !important;
        letter-spacing: 0 !important;
    }
    
    .news-subtitle {
        font-size: 14px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content h3 {
        font-size: 18px;
    }
    
    .timer-unit .number {
        font-size: 24px;
    }
    
    .timer-unit .label {
        font-size: 12px;
    }
    
    .fighter-stats {
        grid-template-columns: 1fr;
    }
    
    .fighter-info h3 {
        font-size: 28px;
    }
    
    .fighter-nickname {
        font-size: 18px;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .fighter-image-container img {
        height: auto;
        object-fit: contain;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .champions-section h3, .leaderboard-section h3 {
        font-size: 26px;
    }
}

/* Boxing News Section */
.boxing-news {
    padding: 100px 50px;
    background: #000;
    position: relative;
}

.boxing-news h2 {
    font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    text-align: center;
    font-size: 48px;
    color: #8a2be2;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.news-subtitle {
    text-align: center;
    color: #9370db;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-loading {
    text-align: center;
    color: #8a2be2;
    font-size: 18px;
    padding: 60px;
    grid-column: 1 / -1;
}

.news-card {
    background: #0a0a0a;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.news-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(138, 43, 226, 0.95);
    color: white;
    padding: 6px 15px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    margin-bottom: 12px;
}

.news-date {
    color: #9370db;
    font-size: 13px;
    font-family: Georgia, 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.news-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.read-more {
    color: #8a2be2;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.news-card:hover .read-more {
    color: #9370db;
}

/* Article Modal */
.article-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: #0a0a0a;
    border: 2px solid rgba(138, 43, 226, 0.5);
    max-width: 900px;
    width: 100%;
    position: relative;
    margin: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
    color: #8a2be2;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #9370db;
}

.modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.modal-body {
    padding: 40px;
}

.modal-header {
    margin-bottom: 30px;
}

.modal-source {
    display: inline-block;
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.modal-title {
    font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    color: #fff;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9370db;
    font-size: 14px;
    font-family: Georgia, 'Times New Roman', serif;
}

.modal-author {
    font-style: italic;
}

.modal-separator {
    color: #666;
}

.modal-date {
    color: #999;
}

.modal-description {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    color: #ddd;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 600;
}

.modal-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-text p {
    margin-bottom: 15px;
}

.modal-footer {
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    padding-top: 25px;
    margin-top: 30px;
}

.modal-attribution {
    color: #999;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
}

.modal-read-full {
    display: inline-block;
    background: #8a2be2;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #8a2be2;
}

.modal-read-full:hover {
    background: transparent;
    color: #8a2be2;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-image {
        height: 250px;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-description {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 0;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-description {
        font-size: 16px;
    }
    
    .modal-text {
        font-size: 15px;
    }
    
    .modal-close {
        font-size: 32px;
        right: 15px;
        top: 15px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .upcoming-events, .fighter-spotlight, .live-stats, .boxing-news {
        padding: 45px 12px;
    }
    
    .upcoming-events h2, .fighter-spotlight h2, .live-stats h2, .boxing-news h2 {
        font-size: 19px !important;
        letter-spacing: 0 !important;
    }
    
    .news-subtitle {
        font-size: 13px;
    }
    
    .news-grid {
        gap: 15px;
    }
    
    .news-content {
        padding: 18px;
    }
    
    .news-content h3 {
        font-size: 17px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .timer-unit .number {
        font-size: 20px;
    }
    
    .fighter-info h3 {
        font-size: 24px;
    }
    
    .fighter-image-container img {
        height: auto;
        object-fit: contain;
    }
    
    .event-item {
        padding: 15px;
    }
    
    .champions-section h3, .leaderboard-section h3 {
        font-size: 22px;
    }
    
    .leaderboard-table th, .leaderboard-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-title {
        font-size: 18px;
    }
}
