:root {
    --bg-color: #050b14;
    --card-bg: #111526;
    --text-color: #ffffff;
    --accent-red: #ff3b3b;
    --discord-color: #5865F2;
    --hover-bg: #1a1f35;
    --border-color: #2a2f45;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-fluid {
    width: 100%;
    padding: 0 40px; /* More space on sides */
}

/* Header Styles */
header {
    background-color: var(--bg-color);
    padding: 15px 0;
    border-bottom: 2px solid #2a1f2d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    color: var(--accent-red);
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
}

.logo-text {
    color: #fff;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -1px;
    line-height: 1;
    font-style: italic;
}

.logo-text .highlight {
    color: var(--accent-red);
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2, #7289da);
    color: white !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-btn:hover {
    background: linear-gradient(135deg, #4752c4, #5b6eae);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

.discord-btn i {
    font-size: 1.2rem;
}

/* Main Content Styles */
main {
    padding-top: 60px;
    display: flex;
    justify-content: center;
}

.hero-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 1000px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.sport-btn {
    background-color: #1a1f2e; /* Darker distinct background */
    border: 1px solid var(--border-color);
    color: #ffffff;
    padding: 25px 20px; /* Larger padding */
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem; /* Larger text */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.sport-btn i {
    font-size: 1.8rem; /* Much larger icons */
    color: var(--accent-red);
    transition: transform 0.3s ease;
}

.sport-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.hero-image-container {
    margin-top: 40px;
    width: 100%;
    height: 350px; /* Fixed height for banner look */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.hero-img {
    width: 100%;
    height: 100%; /* Fill the container */
    object-fit: cover; /* Maintain aspect ratio without distortion */
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.8) contrast(1.1);
}

.hero-image-container:hover .hero-img {
    transform: scale(1.03);
    filter: brightness(1) contrast(1.2);
}

/* Article Styles */
.article-content {
    margin-top: 40px;
    text-align: left;
    background-color: #1a1f2e;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.article-content h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.article-content h3 {
    color: #e0e0e0;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.article-content p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.article-content strong {
    color: white;
    font-weight: 700;
}

a.highlight {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed var(--accent-red);
    transition: all 0.3s ease;
}

a.highlight:hover {
    color: #fff;
    background-color: var(--accent-red);
    border-bottom-style: solid;
    padding: 0 4px;
    border-radius: 4px;
}

.features-list {
    list-style: none;
    margin-left: 0;
}

.features-list li {
    color: #b0b0b0;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.features-list li::before {
    content: '✓';
    color: var(--accent-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Simple Hover Effect for Buttons */
.sport-btn:hover {
    background-color: var(--hover-bg);
    transform: translateY(-2px);
    border-color: var(--accent-red);
    box-shadow: 0 0 12px rgba(255, 59, 59, 0.25);
}

.sport-btn.primary {
    grid-column: 1 / -1;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #4a4f65;
    margin-bottom: 10px;
}

.sport-btn i {
    width: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-card {
        padding: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }
}

/* Footer Styles */
footer {
    background-color: #000000;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #1a1f2e;
}

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

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
}

footer p {
    color: #888;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
}
