* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.15);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.navbar-toggler {
    border: 2px solid rgba(220, 20, 60, 0.5);
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.15);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.3rem rgba(220, 20, 60, 0.4);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28220, 20, 60, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    margin: 0 0.8rem;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
}

.nav-link:hover {
    color: #dc143c !important;
    background: rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #dc143c !important;
    background: rgba(220, 20, 60, 0.15);
}

.btn-register {
    background: linear-gradient(135deg, #dc143c 0%, #b81032 100%);
    color: white;
    font-weight: 700;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-register:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
    color: white;
}

.btn-login {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border: 2px solid rgba(220, 20, 60, 0.6);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-right: 1rem;
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-login:hover {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.15);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

/* RESPONSIVE - Tablets (≤ 991px) */
@media (max-width: 991px) {
    .navbar-brand img {
        width: 60px;
    }

    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 15px;
        border: 1px solid rgba(220, 20, 60, 0.2);
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-item {
        width: 100%;
        margin: 0.4rem 0 !important;
    }

    .nav-link {
        padding: 0.8rem 1.2rem !important;
        border-radius: 10px;
        margin: 0 !important;
        display: block;
    }

    .btn-register,
    .btn-login {
        width: 100%;
        text-align: center;
        margin: 0.6rem 0 !important;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-brand img {
        width: 55px;
    }
}

@media (max-width: 576px) {
    .nav-link {
        font-size: 0.9rem;
        padding: 0.7rem 1rem !important;
    }

    .btn-register,
    .btn-login {
        font-size: 0.85rem;
        padding: 0.9rem 1.2rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-premium {
    display: inline-block;
    background: linear-gradient(135deg, #dc143c 0%, #b81032 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #dc143c 50%, #ff1744 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.stat-item i {
    font-size: 2rem;
    color: #dc143c;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: #ffffff;
}

.stat-item span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-trophy {
    font-size: 25rem;
    color: #dc143c;
    opacity: 0.15;
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating-card {
    position: absolute;
    background: rgba(220, 20, 60, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 3s ease-in-out infinite;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.floating-card i {
    font-size: 2rem;
}

.floating-card.card-2 {
    animation-delay: 1s;
    top: 30%;
    right: 10%;
}

.floating-card.card-3 {
    animation-delay: 2s;
    bottom: 20%;
    left: 10%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
    position: relative;
}

.section-badge {
    display: inline-block;
    background: rgba(220, 20, 60, 0.15);
    color: #dc143c;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(220, 20, 60, 0.15);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc143c 0%, #ff1744 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.4);
    border-color: #dc143c;
    background: linear-gradient(135deg, rgba(26, 26, 46, 1) 0%, rgba(22, 33, 62, 1) 100%);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(220, 20, 60, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #dc143c 0%, #b81032 100%);
    border-color: #dc143c;
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    font-size: 2.5rem;
    color: #dc143c;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #ffffff;
    transform: scale(1.2);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #dc143c 0%, #b81032 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sports Section */
.sports-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    position: relative;
}

.sport-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(220, 20, 60, 0.2);
    text-align: center;
    cursor: pointer;
    height: 100%;
}

.sport-card:hover {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.15);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

.sport-icon-bg {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(220, 20, 60, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.sport-card:hover .sport-icon-bg {
    background: linear-gradient(135deg, #dc143c 0%, #b81032 100%);
    border-color: #dc143c;
    transform: scale(1.1);
}

.sport-icon {
    font-size: 2.5rem;
    color: #dc143c;
    transition: all 0.3s ease;
}

.sport-card:hover .sport-icon {
    color: #ffffff;
    transform: scale(1.2);
}

.sport-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.sport-live {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #7ed321;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* CTA Section */
.cta-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #dc143c 0%, #b81032 50%, #8b0000 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.btn-cta {
    background: #ffffff;
    color: #dc143c;
    font-weight: 800;
    padding: 1.5rem 4rem;
    border-radius: 60px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: inline-block;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    background: #f0f0f0;
    color: #dc143c;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.cta-feature-item i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(220, 20, 60, 0.3);
}

.footer-title {
    color: #dc143c;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #dc143c;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc143c;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #dc143c;
    border-color: #dc143c;
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse-btn 2s ease-in-out infinite;
}

@keyframes pulse-btn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 5rem 0 4rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image-wrapper {
        height: 300px;
        margin-top: 3rem;
    }
    
    .hero-trophy {
        font-size: 15rem;
    }
    
    .floating-card {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }

    .feature-card {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        padding: 1.2rem 2.5rem;
        font-size: 0.95rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .badge-premium {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .stat-item {
        padding: 0.8rem 1rem;
    }
    
    .hero-trophy {
        font-size: 10rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .sport-icon-bg {
        width: 70px;
        height: 70px;
    }
    
    .sport-icon {
        font-size: 2rem;
    }
}