/* Tournament Detail Page Styles */

.tournament-detail-page {
    padding-bottom: 80px;
}

.tournament-hero {
    position: relative;
    background: var(--gradient-hero);
    color: white;
    padding: 100px 0;
    margin-bottom: 60px;
    overflow: hidden;
}

.tournament-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

.tournament-hero-content {
    position: relative;
    z-index: 1;
}

.tournament-breadcrumb {
    margin-bottom: 20px;
}

.tournament-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tournament-breadcrumb a:hover {
    color: white;
}

.tournament-title-section {
    text-align: center;
}

.tournament-sport-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.1em;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tournament-title {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tournament-meta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 1.1em;
    opacity: 0.95;
}

.tournament-tabs {
    margin-top: 40px;
}

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

.info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.info-card h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--text-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.info-card dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px 30px;
}

.info-card dt {
    font-weight: 600;
    color: var(--text-light);
}

.info-card dd {
    color: var(--text-color);
    margin: 0;
}

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

.match-item {
    padding: 18px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.2s ease;
}

.match-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1em;
}

.match-teams .vs {
    color: var(--text-light);
    font-weight: 400;
    padding: 0 15px;
}

.match-info {
    font-size: 0.9em;
    color: var(--text-light);
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (max-width: 768px) {
    .tournament-title {
        font-size: 2.5em;
    }
    
    .tournament-info-grid {
        grid-template-columns: 1fr;
    }
    
    .tournament-meta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-card dl {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

