  body {
    background: #24282d;
    font-family: 'Poppins', sans-serif;
            color: #fff;
        }

        /* HEADER */

        .topbar {
            background-color: #0b0d11;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0 40px;
            border-bottom: 1px solid #0b0d11;
            backdrop-filter: blur(6px);
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
        }

.logout{
    position: absolute;
    right: 40px;
    top: 20px;
    background-color: red;
    color: white;                 
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid red;         
}

        .main-container {
            max-width: 1400px;
            margin: auto;
            padding: 60px 20px;
        }

.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative; 
    display: inline-block; 
}

.page-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px; 
    background: linear-gradient(to right, white, transparent);
    border-radius: 2px; 
}

        /* CARD */

        .sport-card {
            background-color: #0b0d11;
            border: 1px solid #222;
            border-radius: 10px;
            padding: 20px 20px;
            transition: .3s;
            cursor: pointer;
            text-align: start;
            margin: -5px;
        }


        .sport-card:hover {
            border-color: #2ea4ff;
            transform: translateY(-6px);
        }

        /* LOGO */

        .sport-logo {
            width: 90px;
            height: 90px;
            object-fit: contain;
            margin-bottom: -10px;
            margin-top: -14px;

        }


        .sport-name {
            font-size: 20px;
            font-weight: 600;
        }

        /* SUBTEXT */

        .sport-sub {
            font-size: 13px;
            color: #8aa1c2;
            margin-top: 6px;
        }


        .search-box {
    display: flex;
    align-items: center;
    background-color: #0b0d11; 
    border-radius: 6px;
    padding: 12px 10px;
    width: 445px;  
    margin-bottom: 20px;
    margin-left: -5px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    color: #fff;
    flex: 1;
    font-size: 14px;
    margin-left: 6px;
}

.search-icon {
    width: 18px;
    height: 18px;
    fill: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.search-icon:hover {
    transform: scale(1.1);
}