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

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.5;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-bottom: 2px solid #dc2626;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    font-size: 14px;
    font-weight: bold;
}

.live-indicator i {
    color: #dc2626;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.logo h1 {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(45deg, #dc2626, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    color: #3b82f6;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.register-btn, .login-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-btn {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
}

.login-btn {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.register-btn:hover, .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.theme-toggle {
    color: #888;
    cursor: pointer;
    font-size: 18px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 15px 0;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    transform: translateY(-1px);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a.active {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
}

.main-nav a.active::after {
    width: 100%;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* Featured Tournament */
.featured-tournament {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tournament-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

.main-tournament {
    padding: 25px;
}

.tournament-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tournament-status.live {
    background: #dc2626;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.tournament-time {
    color: #888;
    font-size: 14px;
}

.tournament-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.fighter {
    text-align: center;
}

.fighter img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #dc2626;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.fighter img:hover {
    transform: scale(1.1);
}

.fighter-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.fighter-odds {
    background: #3b82f6;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

.vs-section {
    text-align: center;
}

.tournament-title {
    font-size: 16px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 5px;
}

.tournament-subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.vs {
    background: linear-gradient(45deg, #dc2626, #3b82f6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto;
}

.tournament-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.watch-btn, .bracket-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.watch-btn {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
}

.bracket-btn {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.watch-btn:hover, .bracket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 38, 38, 0.3);
}

/* Promotions Grid */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.promo-card {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-card:hover {
    transform: translateY(-3px);
}

.promo-card.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.promo-card.dark {
    background: linear-gradient(135deg, #374151, #111827);
}

.promo-card.red {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.promo-card.teal {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.promo-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.promo-content p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.promo-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
}

.promo-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.promo-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #333;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.widget-header h3 {
    font-size: 18px;
    font-weight: bold;
}

.pro-indicator {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.predictions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prediction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.prediction-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.prediction-league {
    font-size: 14px;
}

.prediction-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
}

.prediction-status.active {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.view-all-btn {
    width: 100%;
    background: transparent;
    border: 2px solid #dc2626;
    color: #dc2626;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #dc2626;
    color: white;
}

/* Rankings Widget */
.rankings h3 {
    margin-bottom: 20px;
    color: #dc2626;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.ranking-item:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateX(5px);
}

.rank {
    background: linear-gradient(45deg, #dc2626, #3b82f6);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.player-name {
    font-weight: bold;
    color: #ffffff;
}

.player-points {
    color: #888;
    font-size: 14px;
}

/* Platforms Section */
.platforms-section {
    margin: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.live-indicator-dot {
    color: #dc2626;
    animation: pulse 2s infinite;
    margin-right: 8px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #dc2626;
}

.view-all-platforms {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.view-all-platforms:hover {
    background: #3b82f6;
    color: white;
}

.platforms-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.1);
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    width: 120px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.logo-placeholder.steam {
    background: linear-gradient(45deg, #1b2838, #2a475e);
}

.logo-placeholder.playstation {
    background: linear-gradient(45deg, #003087, #0070d1);
}

.logo-placeholder.xbox {
    background: linear-gradient(45deg, #107c10, #0e7a0e);
}

.logo-placeholder.pc {
    background: linear-gradient(45deg, #666, #333);
}

.platform-info h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 16px;
}

.platform-terms {
    color: #888;
    font-size: 12px;
    line-height: 1.4;
}

.platform-actions {
    display: flex;
    gap: 10px;
}

.platform-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.platform-btn.primary {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
}

.platform-btn.secondary {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Live Tournaments Section */
.live-tournaments-section {
    margin: 40px 0;
}

.live-tournaments-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.live-tournaments-section h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.live-controls {
    display: flex;
    gap: 15px;
}

.filter-dropdown {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    color: #333;
    font-size: 14px;
    cursor: pointer;
}

.live-tournaments-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 80px 300px repeat(7, 1fr);
    background: #333;
    color: white;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 14px;
}

.table-header .col-time,
.table-header .col-match,
.table-header .col-odd {
    text-align: center;
}

.table-header .col-match {
    text-align: left;
}

.match-row {
    display: grid;
    grid-template-columns: 80px 300px 1fr;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    transition: background-color 0.3s ease;
}

.match-row:hover {
    background-color: #f8f9fa;
}

.match-row:nth-child(even) {
    background-color: #f9f9f9;
}

.match-row:nth-child(even):hover {
    background-color: #f0f0f0;
}

.match-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.match-time .time {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.live-indicator {
    color: #dc2626;
    font-size: 12px;
}

.match-teams {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.team-logo {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.odds-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    align-items: center;
}

.odd-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.odd-value {
    font-weight: bold;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.odd-value:hover {
    background-color: #e3f2fd;
}

.bookmaker-logo {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.bookmaker-logo:hover {
    transform: scale(1.05);
}

.bookmaker-logo.betsson {
    background: #ff6b35;
}

.bookmaker-logo.fonbet {
    background: #dc2626;
}

.bookmaker-logo.novibet {
    background: #333;
}

.bookmaker-logo.interwetten {
    background: #ffb300;
    color: #333;
}

.bookmaker-logo.bet365 {
    background: #4caf50;
}

.bookmaker-logo.stoiximan {
    background: #2196f3;
}

.bookmaker-logo.vistabet {
    background: #ff5722;
}

/* Responsive Design for Live Tournaments */
@media (max-width: 1200px) {
    .table-header,
    .match-row {
        grid-template-columns: 70px 250px 1fr;
    }
    
    .odds-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }
    
    .odd-cell:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .live-tournaments-section .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .table-header,
    .match-row {
        grid-template-columns: 60px 200px 1fr;
        padding: 10px 15px;
    }
    
    .odds-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .odd-cell:nth-child(n+4) {
        display: none;
    }
    
    .bookmaker-logo {
        font-size: 8px;
        padding: 1px 4px;
    }
}

@media (max-width: 480px) {
    .table-header,
    .match-row {
        grid-template-columns: 50px 150px 1fr;
        padding: 8px 10px;
    }
    
    .team span {
        font-size: 12px;
    }
    
    .odd-value {
        font-size: 12px;
    }
    
    .odds-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .odd-cell:nth-child(n+3) {
        display: none;
    }
}

/* News & Streaming Section */
.news-streaming-section {
    margin: 40px 0;
}

.section-row {
    margin-bottom: 40px;
}

.news-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 25px;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.news-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

.news-card.featured {
    grid-row: span 2;
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.news-card.featured img {
    height: 300px;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
}

.news-content p {
    color: #888;
    font-size: 14px;
}

/* Live Streaming */
.live-streaming {
    background: linear-gradient(135deg, #1f1f1f 0%, #111 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
}

.live-streaming h2 {
    color: #dc2626;
    margin-bottom: 25px;
    font-size: 28px;
}

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

.stream-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.stream-card:hover {
    transform: scale(1.05);
}

.stream-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 3;
}

.stream-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.stream-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 38, 38, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.stream-card:hover .stream-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(220, 38, 38, 1);
}

.stream-card h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 15px 15px;
    font-size: 14px;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    padding: 40px 0 20px;
    border-top: 2px solid #dc2626;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #dc2626;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #3b82f6;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #888;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #3b82f6;
    transform: translateY(-2px);
}

/* Active odds styling */
.odd-item.active {
    background: rgba(59, 130, 246, 0.2) !important;
    border: 2px solid #3b82f6;
}

/* Responsive design for live matches */
@media (max-width: 768px) {
    .live-matches-section .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .live-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .match-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .fighter-info.right {
        flex-direction: row;
        text-align: center;
    }
    
    .match-odds {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .odd-item {
        min-width: 70px;
        padding: 8px 12px;
    }
    
    .match-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .watch-live-btn,
    .notify-btn,
    .analysis-btn {
        width: 100%;
        justify-content: center;
    }
}

.footer-text {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

.footer-disclaimer {
    background: rgba(220, 38, 38, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.footer-disclaimer p {
    color: #dc2626;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.age-restriction {
    color: #888;
    font-size: 12px;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #dc2626, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Page-specific styles */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

.page-header h1 {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* Tournament page styles */
.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tournament-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.tournament-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.2);
}

.tournament-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.tournament-card:hover .tournament-image img {
    transform: scale(1.1);
}

.tournament-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.tournament-status.live {
    background: #dc2626;
    color: white;
    animation: pulse 2s infinite;
}

.tournament-status.upcoming {
    background: #3b82f6;
    color: white;
}

.tournament-status.registration {
    background: #10b981;
    color: white;
}

.tournament-status.finished {
    background: #6b7280;
    color: white;
}

.tournament-info {
    padding: 25px;
}

.tournament-info h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

.tournament-date,
.tournament-location {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.tournament-prize {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
}

.tournament-participants {
    color: #3b82f6;
    font-size: 14px;
    margin-bottom: 20px;
}

.tournament-actions {
    display: flex;
    gap: 10px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-primary {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 38, 38, 0.3);
}

/* Calendar styles */
.tournament-calendar {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
}

.tournament-calendar h2 {
    color: #dc2626;
    margin-bottom: 25px;
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calendar-event {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.calendar-event:hover {
    background: rgba(220, 38, 38, 0.1);
}

.event-date {
    text-align: center;
    min-width: 60px;
}

.event-date .day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #dc2626;
}

.event-date .month {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.event-info h4 {
    color: #ffffff;
    margin-bottom: 5px;
}

.event-info p {
    color: #888;
    margin-bottom: 5px;
}

.event-time {
    color: #3b82f6;
    font-size: 14px;
}

/* Fighters page styles */
.fighters-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn,
.category-btn {
    padding: 12px 24px;
    border: 2px solid #333;
    background: transparent;
    color: #888;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.filter-btn.active,
.category-btn.active {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.filter-btn:hover,
.category-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
}

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

.fighter-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.fighter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.fighter-image {
    height: 200px;
    overflow: hidden;
}

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

.fighter-card:hover .fighter-image img {
    transform: scale(1.1);
}

.fighter-info {
    padding: 25px;
}

.fighter-info h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
}

.fighter-country,
.fighter-style {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.fighter-stats {
    margin-top: 20px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.stat-label {
    color: #888;
    font-size: 14px;
}

.stat-bar {
    flex: 1;
    height: 8px;
    background: #333;
    border-radius: 4px;
    margin-left: 15px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Fighter moves styles */
.fighter-moves {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
}

.fighter-moves h2 {
    color: #dc2626;
    margin-bottom: 25px;
}

.moves-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.move-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.move-card h4 {
    color: #dc2626;
    margin-bottom: 10px;
}

.move-input {
    background: #333;
    color: #3b82f6;
    padding: 8px 12px;
    border-radius: 5px;
    font-family: monospace;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.move-description {
    color: #888;
    font-size: 14px;
}

/* Rankings page styles */
.rankings-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid #333;
    background: transparent;
    color: #888;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.tab-btn.active {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.rankings-table {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
}

.ranking-header {
    display: grid;
    grid-template-columns: 80px 1fr 100px 120px 100px 80px;
    background: #333;
    color: white;
    padding: 20px;
    font-weight: bold;
    gap: 20px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 80px 1fr 100px 120px 100px 80px;
    padding: 20px;
    border-bottom: 1px solid #333;
    gap: 20px;
    align-items: center;
    transition: background 0.3s ease;
}

.ranking-row:hover {
    background: rgba(220, 38, 38, 0.1);
}

.rank-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.rank-number.gold {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
}

.rank-number.silver {
    background: linear-gradient(45deg, #c0c0c0, #e5e5e5);
    color: #000;
}

.rank-number.bronze {
    background: linear-gradient(45deg, #cd7f32, #daa520);
    color: #000;
}

.rank-number:not(.gold):not(.silver):not(.bronze) {
    background: #333;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #dc2626;
}

.player-name {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 5px;
}

.player-location {
    color: #888;
    font-size: 12px;
}

.points-col {
    color: #3b82f6;
    font-weight: bold;
    font-size: 18px;
}

.character-name {
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.wins-col {
    color: #888;
    font-size: 14px;
}

.change-col {
    font-weight: bold;
    font-size: 14px;
}

.change-col.up {
    color: #10b981;
}

.change-col.up::before {
    content: "↗ ";
}

.change-col.down {
    color: #ef4444;
}

.change-col.down::before {
    content: "↘ ";
}

.change-col:not(.up):not(.down) {
    color: #888;
}

/* Monthly stats */
.monthly-stats {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-card h4 {
    color: #dc2626;
    margin-bottom: 10px;
}

.stat-value {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

/* Ranking info */
.ranking-info {
    margin-top: 50px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
}

.ranking-info h3 {
    color: #dc2626;
    margin-bottom: 25px;
    text-align: center;
}

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

.info-card {
    text-align: center;
    padding: 20px;
}

.info-card i {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 15px;
}

.info-card h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.info-card p {
    color: #888;
    font-size: 14px;
}

.no-goal-affiliate {
    background: #9ca3af;
}

/* Betting Pages Styles */
.predictions-page, .opap-page, .bookmaker-page {
    padding: 40px 0;
}

.predictions-stats, .opap-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.prediction-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
    position: relative;
    transition: transform 0.3s ease;
}

.prediction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

.prediction-card.featured {
    border: 2px solid #dc2626;
    background: linear-gradient(135deg, #2a1a1a 0%, #1f1111 100%);
}

.prediction-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.prediction-badge.vip {
    background: linear-gradient(45deg, #dc2626, #ef4444);
}

.prediction-badge.free {
    background: linear-gradient(45deg, #10b981, #059669);
}

.prediction-badge.premium {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.prediction-match {
    margin-bottom: 20px;
}

.teams {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.vs {
    color: #dc2626;
    margin: 0 10px;
}

.match-time {
    color: #888;
    font-size: 14px;
}

.tipster-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tipster-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #dc2626;
}

.tipster-name {
    font-weight: bold;
    color: #ffffff;
    display: block;
}

.tipster-stats {
    color: #888;
    font-size: 12px;
}

.prediction-tip h3 {
    color: #dc2626;
    margin-bottom: 10px;
}

.prediction-tip p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.prediction-odds {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.odds {
    background: #3b82f6;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.confidence {
    color: #10b981;
    font-weight: bold;
}

.view-prediction-btn {
    width: 100%;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.view-prediction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 38, 38, 0.3);
}

.tipsters-ranking {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #333;
}

.tipsters-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tipster-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.tipster-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tipster-item .rank {
    background: linear-gradient(45deg, #dc2626, #3b82f6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.tipster-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.tipster-badge.gold {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
}

.tipster-badge.silver {
    background: linear-gradient(45deg, #e5e7eb, #9ca3af);
}

.tipster-badge.bronze {
    background: linear-gradient(45deg, #d97706, #92400e);
}

/* OPAP Page Styles */
.opap-builder {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.coupon-section, .coupon-calculator {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
}

.match-selection {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.match-options {
    display: flex;
    gap: 10px;
}

.option-btn {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.option-btn:hover, .option-btn.selected {
    background: #3b82f6;
    color: white;
}

.selected-matches {
    margin-bottom: 20px;
}

.selected-match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    margin-bottom: 10px;
}

.remove-btn {
    background: #dc2626;
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.coupon-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat.total {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-weight: bold;
    font-size: 18px;
}

.bet-amount {
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    padding: 8px;
    border-radius: 4px;
    width: 80px;
}

.place-bet-btn {
    width: 100%;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.place-bet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 38, 38, 0.3);
}

.opap-tips, .tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tip-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
    text-align: center;
}

.tip-card i {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 15px;
}

.tip-card h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.tip-card p {
    color: #888;
    line-height: 1.6;
}

/* Bookmaker Page Styles */
.bookmaker-logo-large {
    text-align: center;
    margin-bottom: 20px;
}

.logo-placeholder.stoiximan-large {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 32px;
    font-weight: bold;
    display: inline-block;
}

.bookmaker-rating {
    margin-bottom: 40px;
}

.rating-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #333;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: bold;
    color: #10b981;
    display: block;
}

.rating-stars {
    color: #fbbf24;
    margin: 10px 0;
}

.rating-text {
    color: #10b981;
    font-weight: bold;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-item {
    display: grid;
    grid-template-columns: 150px 1fr 50px;
    gap: 15px;
    align-items: center;
}

.rating-bar {
    background: #333;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    background: linear-gradient(45deg, #10b981, #059669);
    height: 100%;
    transition: width 0.3s ease;
}

.bookmaker-offers {
    margin-bottom: 40px;
}

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

.offer-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
    position: relative;
    transition: transform 0.3s ease;
}

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

.offer-card.featured {
    border: 2px solid #dc2626;
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc2626;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.offer-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.offer-content p {
    color: #ccc;
    margin-bottom: 15px;
}

.offer-terms {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.offer-terms span {
    color: #888;
    font-size: 12px;
}

.claim-offer-btn {
    width: 100%;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.claim-offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 38, 38, 0.3);
}

.bookmaker-features {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
    text-align: center;
}

.feature-item i {
    font-size: 48px;
    color: #3b82f6;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-item p {
    color: #888;
    line-height: 1.6;
}

.bookmaker-review {
    margin-bottom: 40px;
}

.review-content {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #333;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.pros h3, .cons h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.pros h3 i {
    color: #10b981;
}

.cons h3 i {
    color: #dc2626;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    color: #ccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.pros li::before {
    content: "✓";
    color: #10b981;
    position: absolute;
    left: 0;
}

.cons li::before {
    content: "✗";
    color: #dc2626;
    position: absolute;
    left: 0;
}

.payment-methods h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-method {
    background: #3b82f6;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.cta-section {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    margin-bottom: 10px;
}

.cta-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: #dc2626;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* User Profile Styles */
.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.user-welcome {
    color: #ffffff;
    font-weight: 500;
}

.user-dropdown {
    position: relative;
}

.user-menu-btn {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.user-menu-btn:hover {
    background: #3b82f6;
    color: white;
}

.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.user-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-menu a:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.user-menu hr {
    border: none;
    border-top: 1px solid #333;
    margin: 5px 0;
}

/* Responsive Design for Betting Pages */
@media (max-width: 1024px) {
    .predictions-stats, .opap-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .predictions-grid {
        grid-template-columns: 1fr;
    }
    
    .opap-builder {
        grid-template-columns: 1fr;
    }
    
    .rating-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .predictions-stats, .opap-stats {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    margin: 5% auto;
    padding: 0;
    border: 1px solid #333;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #333;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 24px;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ccc;
}

.auth-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.form-options {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: #ccc;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #dc2626;
    border-color: #dc2626;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.forgot-password {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    float: right;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #60a5fa;
}

.auth-btn {
    width: 100%;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #333;
}

.auth-divider span {
    background: #1f1f1f;
    color: #888;
    padding: 0 15px;
    position: relative;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn.google {
    background: #db4437;
    color: white;
}

.social-btn.facebook {
    background: #4267B2;
    color: white;
}

.social-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.auth-switch {
    text-align: center;
    color: #888;
    margin: 0;
}

.auth-switch a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    color: #60a5fa;
}

/* Success/Error Messages */
.auth-message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.auth-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
}

.auth-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Responsive Design for Modals */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .auth-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .social-login {
        flex-direction: column;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tournament-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fighter img {
        width: 60px;
        height: 60px;
    }
    
    .tournament-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .streaming-grid {
        grid-template-columns: 1fr;
    }
}