.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border: 3px solid #ff1a1a;
    padding: 30px;
    background: rgba(20, 0, 0, 0.8);
    box-shadow: 
        0 0 20px #ff0000,
        inset 0 0 40px rgba(255, 0, 0, 0.2);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid #ff6666;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.title {
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-shadow: 
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 40px #ff0000;
}

.subtitle {
    font-size: 1.2em;
    color: #ff6666;
    text-shadow: 0 0 10px #ff0000;
}

.login-container {
    position: relative;
}

.login-btn {
    background: rgba(30, 0, 0, 0.6);
    border: 2px solid #ff3333;
    color: #ff3333;
    padding: 10px 20px;
    font-family: 'Courier New', monospace;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #ff3333;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.login-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(15, 0, 0, 0.95);
    border: 2px solid #ff3333;
    padding: 20px;
    min-width: 280px;
    display: none;
    z-index: 100;
}

.login-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.login-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-dropdown h3 {
    color: #ff1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #ff0000;
}

.login-form input {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ff1a1a;
    color: #ff3333;
    padding: 12px;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    font-size: 1em;
    text-align: center;
}

.login-form input::placeholder {
    color: #ff6666;
}

.login-form input:focus {
    outline: none;
    border-color: #ff6666;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.login-form button {
    width: 100%;
    background: linear-gradient(180deg, #ff3333, #cc0000);
    border: 2px solid #ff6666;
    color: #000;
    padding: 12px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.login-form button:hover {
    background: linear-gradient(180deg, #ff6666, #ff3333);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 20px;
    border: 2px solid #ff3333;
    background: rgba(30, 0, 0, 0.6);
}

.stat-item {
    text-align: center;
    padding: 15px 30px;
    margin: 10px;
    border: 2px solid #ff1a1a;
    background: rgba(40, 0, 0, 0.5);
    min-width: 150px;
}

.stat-value {
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 0 0 10px #ff0000;
}

.stat-label {
    font-size: 0.9em;
    color: #ff8888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee {
    background: #1a0000;
    color: #ff3333;
    padding: 15px;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    border: 2px solid #ff1a1a;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-200%); }
}

.search-container {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.search-input {
    width: 100%;
    background: rgba(30, 0, 0, 0.6);
    border: 2px solid #ff3333;
    color: #ff3333;
    padding: 12px 20px;
    font-family: 'Courier New', monospace;
    font-size: 1em;
    text-align: center;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #ff6666;
    letter-spacing: 1px;
}

.search-input:focus {
    outline: none;
    border-color: #ff6666;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    background: rgba(40, 0, 0, 0.8);
}

.search-input::selection {
    background: rgba(255, 0, 0, 0.4);
    color: #ff3333;
}
