* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.background {
    background-image: url(./Screenshot\ 2025-11-10\ 181843.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    z-index: 2;
    position: relative;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(229, 46, 113, 0.7);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #aaa;
    letter-spacing: 1px;
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(2px);
    background: rgba(30, 30, 30, 0.8);
}

.games-table thead {
    background: linear-gradient(90deg, #1a1a2e, #16213e);
}

.games-table th {
    padding: 20px 15px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e52e71;
}

.games-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.games-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.games-table td {
    padding: 18px 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.games-table td:first-child {
    font-weight: 600;
    color: #ff8a00;
}

.games-table a {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
    background: rgba(79, 195, 247, 0.1);
    display: inline-block;
}

.games-table a:hover {
    color: #fff;
    background: rgba(79, 195, 247, 0.3);
    transform: scale(1.05);
}

.footer {
    margin-top: 40px;
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .games-table th,
    .games-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .games-table {
        display: block;
        overflow-x: auto;
    }
}