﻿/* PAGE -- tournaments_desktop | Auto-extracted */

.tournament-card {
background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
border: 1px solid rgba(212, 175, 55, 0.2);
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
transition: transform 0.3s ease, box-shadow 0.3s ease;
overflow: hidden;
}
.tournament-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
border-color: rgba(212, 175, 55, 0.4);
}
.tournament-header {
background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0));
border-bottom: 1px solid rgba(212, 175, 55, 0.1);
padding: 2rem;
position: relative;
}
.tournament-header::before {
content: '';
position: absolute;
top: 0; left: 0; width: 100%; height: 2px;
background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}
.prize-pool {
font-size: 2.5rem;
font-weight: 900;
background: linear-gradient(to right, #D4AF37, #FFF8DC, #D4AF37);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.countdown-pill {
background: rgba(0, 0, 0, 0.5);
border: 1px solid rgba(212, 175, 55, 0.3);
border-radius: 50px;
padding: 8px 20px;
display: inline-flex;
align-items: center;
gap: 8px;
color: #D4AF37;
font-weight: bold;
box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}
.info-box {
background: rgba(255, 255, 255, 0.03);
border-left: 3px solid #D4AF37;
border-radius: 0 8px 8px 0;
padding: 12px 15px;
color: #bbb;
font-size: 0.9rem;
}
.leaderboard-table {
width: 100%;
border-collapse: separate;
border-spacing: 0 6px;
}
.leaderboard-table tr {
background: rgba(0, 0, 0, 0.4);
transition: all 0.2s;
}
.leaderboard-table tr:hover {
background: rgba(212, 175, 55, 0.08);
}
.leaderboard-table td, .leaderboard-table th {
padding: 12px 15px;
border: none;
color: #ddd;
}
.leaderboard-table th {
background: transparent;
color: #888;
text-transform: uppercase;
font-size: 0.8rem;
letter-spacing: 1px;
padding-bottom: 5px;
}
.leaderboard-table tr td:first-child { border-radius: 8px 0 0 8px; }
.leaderboard-table tr td:last-child { border-radius: 0 8px 8px 0; text-align: right; color: #D4AF37; font-weight: bold;}
.leaderboard-table .highlight-me {
background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.4));
border-left: 3px solid #D4AF37;
}
.leaderboard-table .highlight-me td {
color: #fff;
}
.btn-gold {
background: linear-gradient(45deg, #D4AF37, #F3E5AB, #D4AF37);
background-size: 200% auto;
color: #000;
font-weight: 800;
border: none;
padding: 12px 30px;
border-radius: 8px;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
display: inline-block;
text-align: center;
text-decoration: none;
}
.btn-gold:hover {
background-position: right center;
color: #000;
box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
transform: translateY(-2px);
text-decoration: none;
}
.page-title-gradient {
background: linear-gradient(to right, #fff, #D4AF37);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 900;
}
