.tournaments-hero {
    background-image: url('../images/tournaments/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 6rem 0;
    position: relative;
}

.tournaments-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    z-index: 1;
}

.tournaments-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite alternate;
}

.tournaments-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.tournaments-main-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 80vh;
    padding: 0 15px;
    /* background: linear-gradient(120deg, #1a1a2e 0%, #23234b 100%); */
    /* border-radius: 18px; */
    /* box-shadow: 0 8px 32px rgba(175,4,232,0.08); */
    /* padding-bottom: 2rem; */
}

.tournaments-section {
    flex: 1;
    max-width: 900px;
}

.tournament-item {
    display: flex;
    margin-bottom: 3rem;
    border-top: 1px solid rgba(175, 4, 232, 0.2);
    padding-top: 1.5rem;
}

.tournament-date-block {
    width: 120px;
    min-width: 120px;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    height: 120px;
    margin-right: 1.5rem;
}

.tournament-date-day {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.tournament-date-month {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tournament-meta {
    display: flex;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.4rem;
}

.tournament-meta span {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.tournament-meta i {
    margin-right: 0.3rem;
    font-size: 0.8rem;
}

.tournament-content-wrap {
    flex: 1;
}

.tournament-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.tournament-title:hover {
    color: var(--primary);
}

.tournament-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-height: 250px;
}

.tournament-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tournament-image img:hover {
    transform: scale(1.05);
}

.tournament-details {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.tournament-info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tournament-info-item {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ddd;
}

.tournament-info-item i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.register-btn {
    display: inline-block;
    background: var(--gradient);
    background-size: 200% 100%;
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(175, 4, 232, 0.3);
    animation: gradient-shift 4s ease infinite;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(175, 4, 232, 0.5);
    background-position: 100% 50%;
}

.fee-badge {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.prize-badge {
    display: inline-block;
    background: #04E8D4;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.time-badge {
    display: inline-flex;
    align-items: center;
    background: var(--quaternary);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.time-badge i {
    margin-right: 0.4rem;
}

@media (max-width: 1100px) {
    .tournaments-title {
        font-size: 2.5rem;
    }
    
    .tournaments-main-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    
    .tournament-item {
        flex-direction: column;
    }
    
    .tournament-date-block {
        margin-bottom: 1rem;
        width: 100%;
        height: 80px;
        flex-direction: row;
    }
    
    .tournament-date-day {
        margin-right: 0.5rem;
        margin-bottom: 0;
    }
    
    .tournament-image {
        max-height: 300px;
    }
    
    .tournament-image img {
        height: 300px;
    }
}

/* --- Summer Camp Sections Grid --- */
.camp-sections-grid {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
    align-items: stretch;
}
.camp-sections-grid .camp-section {
    flex: 1 1 0;
    background: rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.camp-sections-grid .camp-section h2 {
    text-align: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}
.camp-sections-grid .camp-features {
    width: 100%;
    margin-bottom: 1rem;
}
.camp-sections-grid .feature {
    margin-bottom: 1.2rem;
    text-align: center;
}
.camp-sections-grid .camp-box {
    margin-bottom: 0;
}
.camp-sections-grid .camp-section {
    background: rgba(255,255,255,0.10);
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.camp-box .feature i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s, text-shadow 0.3s;
}
.camp-box.accent-esports .feature i {
    color: #AF04E8;
    text-shadow: 0 0 8px #AF04E844;
}
.camp-box.accent-game .feature i {
    color: #FF7B02;
    text-shadow: 0 0 8px #FF7B0244;
}
.camp-box.accent-physical .feature i {
    color: #00C9FF;
    text-shadow: 0 0 8px #00C9FF44;
}
.camp-box .feature:hover i {
    color: #fff;
    text-shadow: 0 0 16px #fff, 0 0 8px #AF04E8;
}
@media (max-width: 1100px) {
    .camp-sections-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .camp-sections-grid .camp-section {
        padding: 1.5rem 1rem;
    }
}

.camp-box {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 2rem 2rem 1.5rem 2rem;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.camp-box .accent-bar {
    height: 7px;
    width: 100%;
    border-radius: 16px 16px 0 0;
    position: absolute;
    top: 0;
    left: 0;
}
.camp-box.accent-esports .accent-bar {
    background: linear-gradient(90deg, #AF04E8 0%, #04E8D4 100%);
}
.camp-box.accent-game .accent-bar {
    background: linear-gradient(90deg, #FF7B02 0%, #FFD600 100%);
}
.camp-box.accent-physical .accent-bar {
    background: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
}
.camp-box:hover {
    box-shadow: 0 8px 32px rgba(175,4,232,0.25);
    transform: translateY(-4px) scale(1.02);
}
.camp-box h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    text-align: center;
    z-index: 1;
    position: relative;
}
.camp-box ul {
    margin: 1.2rem 0 0 1.2rem;
    padding: 0;
    color: #fff;
    font-size: 1.1rem;
}
.camp-box p, .camp-box li {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
}
@media (max-width: 1100px) {
    .camp-box {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
} 