:root {
    --primary-red: #89201f;
    --dark-bg: #270202;
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.5);
    --glass-border: rgba(137, 32, 31, 0.3);
    --card-bg: rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, #4a0a0a 0%, transparent 60%);
    z-index: -1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(39, 2, 2, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 15px 0;
}

.navbar-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(137, 32, 31, 0.4));
    transition: all 0.3s ease;
}

.navbar-logo:hover img {
    filter: drop-shadow(0 0 15px rgba(137, 32, 31, 0.6));
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-menu li a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.navbar-menu li a:hover::after {
    width: 100%;
}

.navbar-menu li a:hover {
    color: var(--primary-red);
}

.github-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(137, 32, 31, 0.15);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.github-link i {
    font-size: 1.2rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.github-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(137, 32, 31, 0.4);
}

.github-link:hover i {
    color: white;
}

.github-link::after {
    display: none;
}

body {
    padding-top: 70px;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-container {
        flex-direction: column; 
        gap: 10px;
    }

    .navbar-logo img {
        height: 30px;
    }
    
    .navbar-menu {
        gap: 12px;
        justify-content: center;
        width: 100%;
    }
    
    .navbar-menu li a {
        font-size: 0.7rem;
    }
    
    body {
        padding-top: 100px; 
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 10px;
    }

    .navbar-menu {
        gap: 8px;
        flex-wrap: wrap; 
        justify-content: center;
    }

    .navbar-menu li a {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .github-link {
        width: 28px;
        height: 28px;
    }

    .github-link i {
        font-size: 0.9rem;
    }

    body {
        padding-top: 110px;
    }
}

.teaser-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.hero-section {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.logo-wrapper img {
    width: 100%;
    max-width: 220px; 
    height: auto;
    filter: drop-shadow(0 0 20px rgba(137, 32, 31, 0.4));
}

.announcement {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(2.5rem, 9vw, 6rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #ffffff 40%, var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
}

.prize-pool {
    margin: 0 auto 25px auto;
    padding: 20px 45px;
    display: block;
    width: fit-content;
    background: linear-gradient(135deg, #a3201f, #ff3b3b);
    color: #fff;
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 0 30px rgba(137, 32, 31, 0.7),
        0 0 70px rgba(255, 59, 59, 0.4),
        inset 0 2px 15px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.prize-pool::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.prize-pool span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 5px;
    font-weight: 700;
    opacity: 0.95;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.prize-pool strong {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-top: 6px;
    line-height: 1;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info-box {
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 25px;
    background: rgba(137, 32, 31, 0.15);
    border: 1.5px solid var(--glass-border);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-meta {
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.meta-value {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-white);
}

.meta-divider {
    width: 2px;
    height: 45px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-red),
        transparent
    );
    opacity: 0.6;
}

/* Registration Button Styles */
/* Poprawka dla wrappera, aby układał elementy w pionie */
.registration-button-wrapper {
    margin: 50px 0 20px 0; /* Zmniejszyłem dolny margines */
    display: flex;
    flex-direction: column; /* To kluczowa zmiana - jeden pod drugim */
    align-items: center;    /* Środkowanie w poziomie */
    gap: 15px;              /* Odstęp między przyciskami */
}

/* Styl dla drugiego przycisku (Signed up teams) */
.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(137, 32, 31, 0.1); /* Delikatne tło pasujące do reszty */
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.secondary-button i {
    font-size: 1rem;
    color: var(--primary-red);
}

.secondary-button:hover {
    background: rgba(137, 32, 31, 0.2);
    color: var(--text-white);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.secondary-button:active {
    transform: translateY(0);
}

/* Responsywność dla mobile */
@media (max-width: 768px) {
    .secondary-button {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

.registration-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 24px 65px;
    background: linear-gradient(135deg, #ff9d00 0%, #ff6a00 100%);
    color: #ffffff; 
    text-decoration: none;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 
        0 15px 40px rgba(255, 157, 0, 0.3),
        0 0 0 4px rgba(255, 157, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.registration-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.registration-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(255, 106, 0, 0.5),
        0 0 0 6px rgba(255, 157, 0, 0.2);
    background: linear-gradient(135deg, #ffb340 0%, #ff8c00 100%);
}

.registration-button:hover::before {
    left: 150%;
}

.button-icon {
    font-size: 2.2rem;
    color: #000000; 
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.button-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.button-text {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 0.9;
    color: #000000;
}

.button-subtext {
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 4px;
}

.registration-button:active {
    transform: scale(0.98);
}

@keyframes pulse-gold {
    0% { box-shadow: 0 15px 40px rgba(255, 157, 0, 0.3), 0 0 0 0px rgba(255, 157, 0, 0.4); }
    70% { box-shadow: 0 15px 40px rgba(255, 157, 0, 0.3), 0 0 0 15px rgba(255, 157, 0, 0); }
    100% { box-shadow: 0 15px 40px rgba(255, 157, 0, 0.3), 0 0 0 0px rgba(255, 157, 0, 0); }
}

.registration-button {
    animation: pulse-gold 2s infinite;
}
/* Teams Section Styles */
.teams-section {
    text-align: center;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.team-card {
    background: rgba(137, 32, 31, 0.08);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1.2; 
}

.team-card img, 
.team-logo-placeholder {
    flex: 1;             
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;        
    min-height: 0;       
}

.team-card img {
    max-width: 90%;       
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;  
    transition: transform 0.3s ease;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(137, 32, 31, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    background: rgba(137, 32, 31, 0.15);
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(137, 32, 31, 0.4);
}

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

.team-logo-placeholder {
    flex-direction: column;
    gap: 10px;
    color: var(--text-dim);
}

.team-logo-placeholder i {
    font-size: 2rem;
    color: var(--primary-red);
    opacity: 0.3;
}

.team-name {
    width: 100%;
    padding: 12px 8px;
    background: rgba(137, 32, 31, 0.2);
    border-top: 1px solid var(--glass-border);
    text-align: center;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-white);
    min-height: 48px;    
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.team-card:hover .team-name {
    background: rgba(137, 32, 31, 0.35);
}

.rules-button-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.rules-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary-red), #a32422);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 
        0 4px 15px rgba(137, 32, 31, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.rules-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.rules-button:hover::before {
    left: 100%;
}

.rules-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 6px 25px rgba(137, 32, 31, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.rules-button:active {
    transform: translateY(-1px);
}

.rules-button i {
    font-size: 1.2rem;
}

.rules-button span {
    position: relative;
    z-index: 1;
}

.content-wrapper {
    margin-top: 35px;
    padding: 30px 25px;
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

h3 {
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--text-dim);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.sponsor-card img {
    max-height: 80px;
    width: auto;
}

.small-title-box h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
}

.socials-header p {
    color: var(--text-dim);
    margin: 10px auto 35px auto;
    max-width: 600px;
    font-size: 0.95rem;
}

.social-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.social-mini-card {
    background: rgba(137, 32, 31, 0.1);
    border: 1px solid var(--glass-border);
    padding: 18px 25px;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-mini-card i {
    font-size: 1.4rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.social-mini-card span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.social-mini-card:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(137, 32, 31, 0.4);
}

.social-mini-card:hover i {
    color: white;
}

.contact-footer-info {
    margin-top: 25px;
}

.contact-footer-info a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-footer-info a:hover {
    color: #ff3b3b;
}

footer {
    padding: 40px 0;
    text-align: center;
}

.copy small {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

.copy small {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

/* Tournament Rules Section */
.rules-section-main {
    text-align: left;
}

.rules-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rule-block {
    padding: 25px;
    background: rgba(137, 32, 31, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.rule-block:hover {
    background: rgba(137, 32, 31, 0.12);
    border-color: var(--primary-red);
}

.rule-block h4 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
}

.rule-block h4 i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

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

.info-grid-compact.two-col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(137, 32, 31, 0.2);
}

.info-item strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    font-weight: 700;
}

.info-item span {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 600;
}

.stages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.stage-box {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stage-box:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.stage-box.highlight-stage {
    background: rgba(137, 32, 31, 0.15);
    border-color: var(--primary-red);
}

.stage-title {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-red), #a32422);
    border-radius: 16px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.stage-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stage-box ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.stage-box ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* New Tournament Structure Styles */
.tournament-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.stage-card-new {
    width: 100%;
    max-width: 600px;
    padding: 0;
    background: linear-gradient(135deg, rgba(137, 32, 31, 0.15), rgba(0, 0, 0, 0.5));
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stage-card-new:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px rgba(137, 32, 31, 0.4);
}

.stage-card-new.stage-playoffs {
    background: linear-gradient(135deg, rgba(137, 32, 31, 0.25), rgba(0, 0, 0, 0.6));
    border-color: var(--primary-red);
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(137, 32, 31, 0.2);
    border-bottom: 2px solid var(--primary-red);
}

.stage-number {
    font-family: 'League Spartan', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(137, 32, 31, 0.5);
}

.stage-info h5 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    color: var(--text-white);
    letter-spacing: 2px;
}

.stage-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stage-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(137, 32, 31, 0.2);
    transition: all 0.3s ease;
}

.stat-row:hover {
    background: rgba(137, 32, 31, 0.15);
    border-color: var(--primary-red);
}

.stat-row i {
    font-size: 1.3rem;
    color: var(--primary-red);
    width: 25px;
    text-align: center;
}

.stat-row span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-row strong {
    color: var(--text-white);
    font-weight: 800;
}

.advancement {
    margin-top: 10px;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-red), #a32422);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(137, 32, 31, 0.4);
}

.advancement i {
    font-size: 1.2rem;
    color: white;
}

.advancement span {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.final-highlight {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), rgba(137, 32, 31, 0.2));
    border-color: rgba(255, 215, 0, 0.4);
}

.final-highlight i {
    color: #ffd700;
}

.final-highlight strong {
    color: #ffd700;
}

.flow-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.flow-arrow i {
    font-size: 2rem;
    color: var(--primary-red);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.highlight-info {
    padding: 18px 20px;
    background: rgba(255, 200, 0, 0.1);
    border: 2px solid rgba(255, 200, 0, 0.3);
    border-radius: 12px;
}

.highlight-info p {
    margin: 0;
    color: var(--text-white);
    line-height: 1.6;
}

.warning-info {
    padding: 18px 20px;
    background: rgba(255, 100, 100, 0.1);
    border: 2px solid rgba(255, 100, 100, 0.3);
    border-radius: 12px;
}

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

.standard-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

.standard-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: bold;
}

.prize-block {
    background: linear-gradient(135deg, rgba(137, 32, 31, 0.15), rgba(163, 36, 34, 0.08));
    border: 2px solid var(--primary-red);
}

.prize-total-compact {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-red), #a32422);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(137, 32, 31, 0.3);
    position: relative;
    overflow: hidden;
}

.prize-total-compact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.prize-total-compact .label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.prize-total-compact .amount {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.prize-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prize-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.prize-row:hover {
    transform: translateX(5px);
    border-color: var(--primary-red);
}

.prize-row.first-place {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.12), rgba(0, 0, 0, 0.4));
    border-color: #ffd700;
}

.prize-row.second-place {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.12), rgba(0, 0, 0, 0.4));
    border-color: #c0c0c0;
}

.prize-row.third-place {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.12), rgba(0, 0, 0, 0.4));
    border-color: #cd7f32;
}

.prize-row .place {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
}

.prize-row .place i {
    font-size: 1.3rem;
}

.prize-row.first-place .place i {
    color: #ffd700;
}

.prize-row.second-place .place i {
    color: #c0c0c0;
}

.prize-row.third-place .place i {
    color: #cd7f32;
}

.prize-row .money {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-red);
}

@media (max-width: 1024px) {
    .teams-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .logo-wrapper img { 
        max-width: 200px; 
    }
    
    .announcement { 
        font-size: 3.5rem;
        margin-bottom: 30px;
    }
    
    .prize-pool {
        padding: 22px 40px;
        margin-bottom: 30px;
    }
    
    .prize-pool span {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .prize-pool strong {
        font-size: 2.5rem;
    }
    
    .info-box {
        flex-direction: column;
        gap: 20px;
        padding: 25px 30px;
    }
    
    .meta-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(
            to right,
            transparent,
            var(--primary-red),
            transparent
        );
    }
    
    .meta-value {
        font-size: 1.4rem;
    }

    .registration-button {
        padding: 20px 40px;
    }

    .button-icon {
        font-size: 2rem;
    }

    .button-text {
        font-size: 1.2rem;
    }

    .button-subtext {
        font-size: 0.7rem;
    }

    .teams-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .team-name {
        font-size: 0.65rem;
        padding: 10px 6px;
        min-height: 2.4em;
    }
    
    .rules-button {
        padding: 14px 28px;
        font-size: 0.8rem;
        gap: 10px;
    }
    
    .rules-button i {
        font-size: 1.1rem;
    }
    
    .social-mini-card { 
        width: 100%; 
    }
    
    .content-wrapper {
        padding: 30px 20px;
    }
    
    .info-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .info-grid-compact.two-col {
        grid-template-columns: 1fr;
    }
    
    .stages-container {
        grid-template-columns: 1fr;
    }
    
    .stage-card-new {
        max-width: 100%;
    }
    
    .stage-header {
        padding: 20px;
    }
    
    .stage-number {
        font-size: 2.5rem;
    }
    
    .stage-info h5 {
        font-size: 1.4rem;
    }
    
    .stage-content {
        padding: 20px;
    }
    
    .stat-row {
        padding: 10px 12px;
    }
    
    .advancement {
        padding: 12px;
    }
    
    .prize-row {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .prize-total-compact .amount {
        font-size: 2rem;
    }
    
    .rule-block h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .teaser-container {
        padding: 30px 15px;
    }
    
    .announcement {
        font-size: 2.8rem;
    }
    
    .prize-pool {
        padding: 20px 35px;
    }
    
    .info-box {
        padding: 20px 25px;
    }

    .registration-button {
        padding: 18px 35px;
    }

    .button-text {
        font-size: 1rem;
    }

    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .team-logo-placeholder i {
        font-size: 1.5rem;
    }

    .team-logo-placeholder {
        font-size: 0.65rem;
    }

    .team-name {
        font-size: 0.6rem;
        padding: 8px 4px;
        letter-spacing: 0.5px;
        min-height: 2.2em;
        line-height: 1.2;
    }
}