body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #111;
}

.custom-navbar {
    background-color: #000;
}

.navbar-brand {
    font-weight: bold;
    color: #28a745 !important;
}

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: #28a745 !important;
}

.btn-login {
    background-color: #28a745;
    color: white;
    border-radius: 25px;
    padding: 6px 22px;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url("/assets/images/futsal.jpg") center center no-repeat;
    background-size: cover;
    min-height: 100vh;
    padding: 120px 0;
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s ease;
    color: white;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(40, 167, 69, 0.2);
}

.footer {
    background: #000;
    color: #aaa;
    padding: 20px;
    text-align: center;
}

/* PREMIUM HERO SECTION */

.premium-hero {
   background: linear-gradient(
        135deg,
        #000000 0%,
        #0f0f0f 40%,
        #1a1a1a 100%
    );
    min-height: 100vh;
    padding: 120px 0;
}

.premium-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,128,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.team-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 15px;
    min-width: 120px;
    transition: 0.3s ease;
}

.stat-card h3 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: bold;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(0,255,0,0.2);
}

.player-card {
    background: #faf7f7;
    color: #fff;
}

.player-card h5 {
    color: #0000 !important;
}


.add-player-btn {
    background: #ffcc00;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.add-player-btn:hover {
    background: #ffaa00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}


.offer-float{
    position: fixed;
    top: 40%;
    left: -280px;
    width: 260px;
    background: linear-gradient(135deg,#16a34a,#065f46);
    color: #fff;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: 0.5s ease;
    z-index: 9999;
}

.offer-float.active{
    left: 0;
}

.offer-content{
    padding: 20px;
    text-align: center;
}

.offer-content h3{
    margin-bottom: 10px;
    font-size: 20px;
}

.offer-content p{
    font-size: 16px;
    margin-bottom: 15px;
}

.offer-btn{
    display: inline-block;
    background: #facc15;
    color: #000;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.offer-btn:hover{
    background: #fff;
}

.close-offer{
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}


body{
    font-family: Arial;
    background:#111;
    color:#fff;
}

.container{
    max-width:900px;
    margin:40px auto;
}

.slabs{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.slab-card{
    background:#1e1e1e;
    padding:20px;
    width:250px;
    border-radius:8px;
    text-align:center;
}

button{
    padding:8px 15px;
    background:#28a745;
    border:none;
    color:white;
    cursor:pointer;
    border-radius:5px;
}

button:hover{
    background:#218838;
}

input{
    width:100%;
    padding:8px;
    margin:8px 0;
    border-radius:5px;
    border:1px solid #444;
    background:#222;
    color:#fff;
}

.success{
    background:green;
    padding:10px;
    margin-bottom:15px;
}

.error{
    background:red;
    padding:10px;
    margin-bottom:15px;
}