: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 Styles - New Modern Tech Look */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.logo-container:hover {
    background: rgba(255, 255, 255, 0.05);
}

.logo-icon {
    color: var(--accent-red);
    font-size: 2.2rem;
    filter: drop-shadow(0 0 5px var(--accent-red));
    animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    color: #fff;
    font-weight: 800;
    font-size: 2.4rem;
    letter-spacing: -1px;
    line-height: 1;
    font-family: 'Arial', sans-serif; /* Clean font */
    text-transform: uppercase;
    position: relative;
}

.logo-text .highlight {
    color: var(--accent-red);
    position: relative;
    text-shadow: 0 0 15px rgba(255, 59, 59, 0.6);
}

/* Glitch effect on hover for 'EAST' */
.logo-container:hover .logo-text .highlight {
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
    color: #fff; /* Flash white on glitch */
    text-shadow: 2px 0 var(--accent-red), -2px 0 #00ffff;
}

@keyframes glitch {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}

.discord-btn {
    background: #5865F2;
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.discord-btn:hover::before {
    left: 100%;
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.8), 0 0 50px rgba(88, 101, 242, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.discord-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.4);
}

.discord-btn i {
    font-size: 1.4rem;
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}
}

/* 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 & Buttons - New Futuristic HUD Style */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.sport-btn {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 20px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Icon on right */
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.sport-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.sport-btn:hover::after {
    width: 100%;
}

.sport-btn i {
    font-size: 1.8rem;
    color: #888;
    transition: all 0.3s ease;
    display: block;
}

.sport-btn:hover {
    background: #1a1a24;
    color: #fff;
    transform: translateY(-2px);
    border-color: rgba(255, 59, 59, 0.5);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.sport-btn:hover i {
    color: var(--accent-red);
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 0 8px var(--accent-red));
}

.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;
}
