:root{
    --bg-main: #0b0b0d;
    --bg-card: rgba(255,255,255,0.06);
    --bg-card-solid: #17181c;
    --text-main: #f5f5f5;
    --text-soft: #c9c9c9;
    --accent: #d62828;
    --accent-hover: #b71f1f;
    --line: rgba(255,255,255,0.10);
}

*{
    box-sizing: border-box;
}

body{
    margin: 0;
    background: var(--bg-main);
    color: var(--text-main);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a{
    text-decoration: none;
}

.club-card{
    transition: all .25s ease;
    cursor: pointer;
}

.club-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.18) !important;
    border: 1px solid rgba(255, 60, 60, 0.25);
}

.navbar-custom{
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.brand-title{
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .5px;
}

.navbar .nav-link{
    color: #e9e9e9;
    font-weight: 500;
    transition: .25s ease;
}

.navbar .nav-link:hover{
    color: #ffffff;
}

.hero-section{
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.45) 100%),
        url("../img/logosolo.png") center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right, rgba(214,40,40,0.20), transparent 30%);
    pointer-events: none;
}

.hero-content{
    position: relative;
    z-index: 2;
}

.hero-badge{
    display: inline-block;
    background: rgba(214,40,40,0.14);
    color: #fff;
    border: 1px solid rgba(214,40,40,0.35);
    padding: .55rem 1rem;
    border-radius: 999px;
    font-size: .95rem;
    letter-spacing: .3px;
}

.hero-title{
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 0;
}

.hero-title span{
    color: var(--accent);
}

.hero-text{
    font-size: 1.12rem;
    color: var(--text-soft);
    max-width: 700px;
    line-height: 1.8;
}

.hero-actions .btn{
    border-radius: 999px;
    padding: .9rem 1.6rem;
    font-weight: 600;
}

.hero-stats{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-card{
    min-width: 135px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.22);
}

.stat-card h3{
    margin: 0;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 800;
}

.stat-card p{
    margin: .2rem 0 0;
    color: var(--text-soft);
    font-size: .95rem;
}

.hero-side-card{
    background: rgba(20,20,20,0.78);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.28);
}

.hero-side-card h4{
    font-weight: 700;
}

.hero-side-card p{
    color: #ededed;
    margin-bottom: .85rem;
}

.section-dark{
    background: #101114;
}

.section-light{
    background: #f5f5f5;
    color: #1b1b1b;
}

.section-title{
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: .7rem;
}

.section-subtitle{
    color: var(--text-soft);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-title-dark{
    font-size: 2.2rem;
    font-weight: 800;
    color: #161616;
}

.section-text-dark{
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
}

.info-card{
    background: var(--bg-card-solid);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 2rem;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.info-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.info-card h4{
    font-weight: 700;
    margin-bottom: .85rem;
}

.info-card p{
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 0;
}

.info-icon{
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(214,40,40,0.14);
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-custom{
    background: #0a0a0c;
    color: #f1f1f1;
    border-top: 1px solid var(--line);
}

.footer-line{
    border-color: rgba(255,255,255,0.1);
}

.social-link{
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #fff;
    margin-left: .5rem;
    transition: .25s ease;
}

.social-link:hover{
    background: var(--accent);
    color: #fff;
}

.btn-danger{
    background: var(--accent);
    border-color: var(--accent);
}

.btn-danger:hover{
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.navbar .nav-link.active{
    color: #fff;
    font-weight: 700;
    position: relative;
}

.navbar .nav-link.active::after{
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 4px;
    height: 2px;
    background: var(--accent);
    border-radius: 10px;
}
@media (max-width: 991.98px){
    .hero-section{
        min-height: auto;
    }

    .hero-title{
        margin-top: 1rem;
    }

    .hero-side-card{
        margin-top: 1rem;
    }
}