* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --champion-red: #E31E24;
    --deep-black: #0D0D0D;
    --pure-white: #FFFFFF;
    --silver: #C0C0C0;
    --gold-accent: #FFD700;
    --dark-red: #A11217;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(145deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
    color: var(--pure-white);
    line-height: 1.8;
    min-height: 100vh;
}

header {
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(8px);
    padding: 1.5rem 2.5rem;
    border-bottom: 5px solid var(--champion-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.4);
}

.top-bar {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--champion-red), var(--dark-red));
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--pure-white);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.6);
    font-family: 'Impact', sans-serif;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--champion-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Impact', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.main-menu {
    display: flex;
    gap: 1rem;
}

.main-menu a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border: 3px solid transparent;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.main-menu a:hover {
    border-color: var(--champion-red);
    background: rgba(227, 30, 36, 0.2);
    transform: scale(1.05);
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-icon span {
    width: 35px;
    height: 4px;
    background: var(--champion-red);
    border-radius: 2px;
    transition: 0.3s;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    width: 100%;
}

.intro {
    text-align: center;
    padding: 6rem 3rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.15), rgba(161, 18, 23, 0.15));
    border: 4px solid var(--champion-red);
    border-radius: 10px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--champion-red), var(--gold-accent), var(--champion-red));
    z-index: -1;
    border-radius: 10px;
    opacity: 0.3;
}

.intro h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--champion-red);
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.intro p {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--silver);
    line-height: 2.2;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.highlight-box {
    background: linear-gradient(145deg, rgba(227, 30, 36, 0.1), rgba(13, 13, 13, 0.8));
    padding: 3rem;
    border: 3px solid var(--champion-red);
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.highlight-box::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--gold-accent);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s;
}

.highlight-box:hover::after {
    opacity: 1;
}

.highlight-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.5);
}

.icon-symbol {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.highlight-box h3 {
    color: var(--gold-accent);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
}

.highlight-box p {
    color: var(--silver);
    font-size: 1.1rem;
    line-height: 2;
}

.game-zone {
    background: rgba(13, 13, 13, 0.9);
    border: 4px solid var(--champion-red);
    border-radius: 10px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 15px 50px rgba(227, 30, 36, 0.4);
}

.game-zone h2 {
    text-align: center;
    font-size: 3.5rem;
    color: var(--gold-accent);
    margin-bottom: 2.5rem;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.game-player {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 8px;
    background: #000;
}

.info-block {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(227, 30, 36, 0.08);
    border-left: 6px solid var(--champion-red);
    border-radius: 8px;
}

.info-block h2 {
    color: var(--gold-accent);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 900;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
}

.info-block p {
    color: var(--silver);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 2.1;
}

.info-block ul {
    list-style: none;
    padding: 0;
}

.info-block li {
    padding: 1.2rem 2rem;
    margin: 1rem 0;
    background: rgba(13, 13, 13, 0.6);
    border-left: 5px solid var(--champion-red);
    border-radius: 5px;
    color: var(--pure-white);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.info-block li:hover {
    background: rgba(227, 30, 36, 0.15);
    transform: translateX(15px);
    border-left-color: var(--gold-accent);
}

.info-block li::before {
    content: "▶ ";
    color: var(--champion-red);
    font-weight: bold;
    margin-right: 1rem;
}

footer {
    background: rgba(13, 13, 13, 0.98);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
    border-top: 5px solid var(--champion-red);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-links a {
    color: var(--pure-white);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 3px solid var(--champion-red);
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links a:hover {
    background: var(--champion-red);
    transform: scale(1.08);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.5);
}

.footer-info {
    text-align: center;
    color: var(--silver);
    padding-top: 2rem;
    border-top: 2px solid rgba(227, 30, 36, 0.3);
}

.verify-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.verify-screen.show {
    display: flex;
}

.verify-panel {
    background: linear-gradient(145deg, #0D0D0D, #1A1A1A);
    padding: 4rem;
    border: 5px solid var(--champion-red);
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 25px 80px rgba(227, 30, 36, 0.6);
}

.verify-panel h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--champion-red);
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.verify-panel p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 2.2;
    color: var(--silver);
}

.verify-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.verify-btn {
    padding: 1.3rem 4rem;
    font-size: 1.3rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 900;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Impact', sans-serif;
    letter-spacing: 2px;
}

.btn-confirm {
    background: var(--champion-red);
    color: var(--pure-white);
    border: 3px solid var(--champion-red);
}

.btn-confirm:hover {
    background: var(--dark-red);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.7);
}

.btn-decline {
    background: transparent;
    color: var(--silver);
    border: 3px solid var(--silver);
}

.btn-decline:hover {
    background: var(--silver);
    color: var(--deep-black);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .main-menu {
        position: fixed;
        top: 95px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 95px);
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 3rem;
        transition: left 0.4s;
        gap: 0;
    }
    
    .main-menu.active {
        left: 0;
    }
    
    .main-menu a {
        width: 100%;
        text-align: center;
        padding: 1.5rem;
        border-bottom: 2px solid rgba(227, 30, 36, 0.3);
    }
    
    header {
        padding: 1.2rem 1.5rem;
    }
    
    .intro h1 {
        font-size: 3rem;
    }
    
    .intro p {
        font-size: 1.2rem;
    }
    
    .highlights {
        grid-template-columns: 1fr;
    }
    
    .game-player {
        height: 600px;
    }
    
    .container {
        padding: 2.5rem 1rem;
    }
    
    .verify-panel {
        margin: 1rem;
        padding: 3rem;
    }
    
    .verify-panel h2 {
        font-size: 2.5rem;
    }
    
    .verify-actions {
        flex-direction: column;
        gap: 1rem;
    }
}
