body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, #f0f4f9, #e0e7f1);
    margin: 0;
    padding: 0;
}

.premium-container {
    margin-top: 40px;
    padding: 20px;
}

.premium-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f3b77;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.premium-card {
    border: none;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #d9e4f5);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15), -5px -5px 15px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2), 0 6px 10px rgba(255, 255, 255, 0.6);
}

.premium-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #e0e7f1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px auto;
    transition: transform 0.3s ease-in-out;
}

.premium-logo:hover {
    transform: scale(1.1);
}

.premium-matchup {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f3b77;
    margin: 10px 0;
}

.vs {
    color: #e63946;
    font-weight: bold;
    font-size: 1.4rem;
}

.premium-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease-in-out, box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out, color 0.3s ease-in-out;
}

.premium-btn:hover {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: #e0e7f1;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.no-games {
    font-size: 1.2rem;
    color: #777;
}

/* Footer Styling */
.premium-footer {
    background: linear-gradient(120deg, #1f3b77, #283e8c);
    padding: 20px 0;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #c3cfe2;
}

.footer-social a {
    color: #ffffff;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

.footer-social a:hover {
    color: #c3cfe2;
}

.footer-copyright p {
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
}
