body {
    background-color: #111; /* Darker background like the image */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    margin: 0;
    position: relative;
}

.site-logo {
    position: absolute;
    top: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 100;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00b4db, #0083b0);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 180, 219, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.site-logo:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 180, 219, 0.6);
}

.discord-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #5865F2, #4752c4);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 100;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
    background: linear-gradient(135deg, #677bc4, #5865F2);
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 50px;
}

.description-text {
    background: linear-gradient(to bottom, #1e2129, #161920);
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.7;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #2f3340;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.description-text strong {
    color: #ffffff;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Quick Links Styles */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.quick-link-item {
    background-color: #2b2b2b;
    padding: 16px 20px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: 1px solid #3a3a3a;
}

.quick-link-item:hover {
    background-color: #383838;
    transform: translateY(-2px);
}

.link-text {
    font-weight: 700;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ff4444;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

/* Live Pulse Animation */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 68, 68, 0.7);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
        text-shadow: 0 0 10px rgba(255, 68, 68, 0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 68, 68, 0.7);
    }
}

.dot {
    font-size: 12px;
    animation: pulse 1.5s infinite ease-in-out;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.sport-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: #b0b0b0;
    transition: transform 0.2s, background-color 0.2s;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.sport-card:hover {
    transform: translateY(-5px);
    background-color: #252525;
    border-color: #444;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #ff4444;
    text-transform: uppercase;
    background: rgba(255, 68, 68, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.card-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #e0e0e0;
}

.card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #888;
    margin: 0;
}

/* Info Section Styles */
.info-section {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid #333;
}

.info-section h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.info-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-section ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.info-section li {
    color: #b0b0b0;
    padding: 10px;
    background-color: #252525;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section li::before {
    content: "•";
    color: #5865F2;
    font-weight: bold;
}

/* Highlighted keywords style */
.highlight {
    color: #5865F2; /* Discord blue for highlights */
    font-weight: bold;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.highlight:hover {
    text-decoration: underline;
}

.sidebar-ad {
    position: absolute;
    top: 90px;
    right: 25px;
    z-index: 90;
}

@media (max-width: 768px) {
    .site-logo {
        position: static;
        margin-bottom: 20px;
        justify-content: center;
    }

    .discord-btn {
        position: static;
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    .sidebar-ad {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    body {
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Footer Styles */
.site-footer {
    margin-top: 40px;
    padding: 30px 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 14px;
    background-color: #000000; /* Black background as requested */
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
}

.container {
    padding-bottom: 160px; /* Space for footer */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #5865F2;
    text-decoration: underline;
}

.site-footer p {
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}
