:root {
    --primary-color: #ff4757;
    --dark-bg: #1e272e;
    --light-text: #f1f2f6;
    --accent-color: #2f3542;
    --hover-color: #ff6b81;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    background-color: var(--accent-color);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-style: italic;
}

.logo-icon {
    color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #ced6e0;
}

/* Sports Buttons */
.sports-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--accent-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: 1.5px;
}

.sport-btn {
    min-width: 180px;
    background: linear-gradient(145deg, #2f3542, #252a33);
    box-shadow: 5px 5px 10px #1a1e24, 
                -5px -5px 10px #3e4658;
}

.sport-btn:hover {
    background: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.5);
    color: white;
    border-color: transparent;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.content-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-section h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #f1f2f6;
}

.content-section h4 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #dfe4ea;
}

.content-section p {
    font-size: 1.1rem;
    color: #a4b0be;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.feature-list {
    list-style-position: inside;
    margin: 1rem 0;
    padding-left: 1rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    color: #a4b0be;
    font-size: 1.1rem;
}

.feature-list strong {
    color: var(--primary-color);
}

.section-divider {
    border: 0;
    height: 1px;
    background: #2f3542;
    margin: 3rem 0;
}

.alternatives-list {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.alternatives-list ul {
    list-style: none;
    margin-top: 1rem;
}

.alternatives-list li {
    margin-bottom: 1rem;
}

.alternatives-list a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.alternatives-list a:before {
    content: '➜';
    color: var(--primary-color);
    margin-right: 10px;
}

.alternatives-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Footer */
footer {
    background-color: var(--accent-color);
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    color: #a4b0be;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.disclaimer {
    font-size: 0.9rem;
    color: #a4b0be;
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
}
