  body{
            font-family:Arial,sans-serif;
            background:#f8fafc;
            overflow-x:hidden;
        }

        a{
            text-decoration:none;
        }

        /*
        |--------------------------------------------------------------------------
        | Navbar
        |--------------------------------------------------------------------------
        */

        .navbar{
            background:#0f172a;
            padding:15px 0;
        }

        .navbar-brand{
            color:#fff !important;
            font-size:28px;
            font-weight:700;
        }

        .nav-btn{
            border-radius:12px;
            padding:10px 22px;
            font-weight:600;
        }

        /*
        |--------------------------------------------------------------------------
        | Hero Section
        |--------------------------------------------------------------------------
        */

        .hero{
            background:linear-gradient(135deg,#2563eb,#1e3a8a);
            color:#fff;
            padding:100px 0;
            position:relative;
            overflow:hidden;
        }

        .hero h1{
            font-size:58px;
            font-weight:800;
            line-height:1.2;
        }

        .hero p{
            font-size:20px;
            margin-top:20px;
            color:#e2e8f0;
        }

        .hero-btn{
            padding:15px 35px;
            font-size:20px;
            border-radius:15px;
            margin-top:20px;
            font-weight:700;
        }

        .hero-img{
            width:100%;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float{
            0%{
                transform:translateY(0px);
            }
            50%{
                transform:translateY(-15px);
            }
            100%{
                transform:translateY(0px);
            }
        }

        /*
        |--------------------------------------------------------------------------
        | Stats
        |--------------------------------------------------------------------------
        */

        .stats-section{
            margin-top:-50px;
            position:relative;
            z-index:10;
        }

        .stats-card{
            background:#fff;
            border-radius:20px;
            padding:30px;
            text-align:center;
            box-shadow:0 10px 30px rgba(0,0,0,0.08);
        }

        .stats-card h2{
            font-size:40px;
            font-weight:800;
            color:#2563eb;
        }

        /*
        |--------------------------------------------------------------------------
        | Features
        |--------------------------------------------------------------------------
        */

        .section-title{
            text-align:center;
            margin-bottom:50px;
        }

        .section-title h2{
            font-size:42px;
            font-weight:800;
        }

        .feature-card{
            background:#fff;
            padding:35px;
            border-radius:25px;
            text-align:center;
            height:100%;
            transition:0.3s;
            box-shadow:0 5px 20px rgba(0,0,0,0.05);
        }

        .feature-card:hover{
            transform:translateY(-10px);
        }

        .feature-icon{
            font-size:55px;
            color:#2563eb;
            margin-bottom:20px;
        }

        /*
        |--------------------------------------------------------------------------
        | Categories
        |--------------------------------------------------------------------------
        */

        .category-card{
            background:#fff;
            padding:30px;
            border-radius:20px;
            text-align:center;
            box-shadow:0 5px 20px rgba(0,0,0,0.05);
            transition:0.3s;
        }

        .category-card:hover{
            transform:scale(1.05);
        }

        .category-icon{
            font-size:45px;
            color:#2563eb;
            margin-bottom:15px;
        }

        /*
        |--------------------------------------------------------------------------
        | CTA
        |--------------------------------------------------------------------------
        */

        .cta-section{
            background:linear-gradient(135deg,#1e3a8a,#2563eb);
            color:#fff;
            padding:80px 0;
            border-radius:30px;
        }

        /*
        |--------------------------------------------------------------------------
        | Footer
        |--------------------------------------------------------------------------
        */

        footer{
            background:#0f172a;
            color:#fff;
            padding:25px 0;
            margin-top:80px;
        }

        /*
        |--------------------------------------------------------------------------
        | Mobile
        |--------------------------------------------------------------------------
        */

        @media(max-width:768px){

            .hero{
                text-align:center;
                padding:70px 0;
            }

            .hero h1{
                font-size:38px;
            }

            .hero p{
                font-size:17px;
            }

            .section-title h2{
                font-size:32px;
            }

        }
        
         .dashboard-card{
            border-radius:25px;
        }

        .coin-box{
            background:linear-gradient(135deg,#f59e0b,#fbbf24);
            color:#fff;
            border-radius:20px;
            padding:20px;
            margin-top:20px;
        }

        .btn-custom{
            min-width:180px;
            height:55px;
            border-radius:14px;
            font-size:18px;
            font-weight:600;
        }
        
        .leaderboard-container{
            max-width:900px;
            margin:40px auto;
        }

        .leaderboard-card{
            background:#fff;
            border-radius:20px;
            padding:30px;
            box-shadow:0 5px 20px rgba(0,0,0,0.08);
        }

        .leaderboard-title{
            font-size:32px;
            font-weight:700;
            margin-bottom:30px;
            text-align:center;
        }

        .player-row{
            display:flex;
            justify-content:space-between;
            align-items:center;
            padding:15px 20px;
            border-radius:15px;
            margin-bottom:15px;
            background:#f8fafc;
            transition:0.3s;
        }

        .player-row:hover{
            background:#eff6ff;
        }

        .player-info{
            display:flex;
            align-items:center;
            gap:15px;
        }

        .rank{
            width:40px;
            height:40px;
            border-radius:50%;
            background:#2563eb;
            color:#fff;
            display:flex;
            justify-content:center;
            align-items:center;
            font-weight:700;
        }

        .profile-img{
            width:55px;
            height:55px;
            border-radius:50%;
            object-fit:cover;
            border:3px solid #2563eb;
        }

        .default-profile{
            width:55px;
            height:55px;
            border-radius:50%;
            background:#cbd5e1;
            display:flex;
            justify-content:center;
            align-items:center;
            font-size:24px;
            color:#475569;
        }

        .player-name{
            font-size:20px;
            font-weight:600;
        }

        .player-score{
            text-align:right;
        }

        .score{
            font-size:24px;
            font-weight:700;
            color:#16a34a;
        }

        .games{
            font-size:14px;
            color:#64748b;
        }

        .top-1{
            background:#fef3c7;
        }

        .top-2{
            background:#e2e8f0;
        }

        .top-3{
            background:#fed7aa;
        }
  .quiz-container{
            max-width:800px;
            margin:40px auto;
        }

        .quiz-card{
            background:#fff;
            padding:30px;
            border-radius:20px;
            box-shadow:0 5px 20px rgba(0,0,0,0.08);
        }

        .question-box{
            display:none;
        }

        .question-box.active{
            display:block;
        }

        .question-title{
            font-size:24px;
            font-weight:700;
            margin-bottom:20px;
        }

        .option-label{
            width:100%;
            padding:15px;
            border:2px solid #e2e8f0;
            border-radius:12px;
            margin-bottom:15px;
            cursor:pointer;
            transition:0.3s;
        }

        .option-label:hover{
            background:#eff6ff;
            border-color:#2563eb;
        }

        .timer-box{
            background:#2563eb;
            color:#fff;
            padding:10px 20px;
            border-radius:10px;
            font-size:20px;
            font-weight:700;
            display:inline-block;
            margin-bottom:20px;
        }

        .btn-next{
            padding:12px 30px;
            border-radius:12px;
            font-size:18px;
        }
        
        
       .register-box{
    width:50%;
    max-width:450px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    margin:auto;
    margin-top: 20px;

}

.logo{
    text-align:center;
    margin-bottom:25px;
}

.logo h2{
    font-weight:700;
    color:#0f172a;
    font-size:32px;
}

.logo p{
    color:#64748b;
    margin-top:8px;
}

.form-control{
    height:52px;
    border-radius:12px;
    border:1px solid #cbd5e1;
    padding-left:15px;
    font-size:16px;
    transition:0.3s;
}

.form-control:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 0.15rem rgba(37,99,235,0.15);
}

.btn-register{
    height:52px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    background:#2563eb;
    border:none;
    transition:0.3s;
}

.btn-register:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

.login-link{
    text-align:center;
    margin-top:20px;
    font-size:15px;
}

.login-link a{
    color:#2563eb;
    font-weight:600;
    text-decoration:none;
}

.login-link a:hover{
    text-decoration:underline;
}

/*
|--------------------------------------------------------------------------
| Mobile Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:576px){

    .register-box{
        padding:25px;
        border-radius:16px;
         width:100%;
    }

    .logo h2{
        font-size:26px;
    }

    .btn-register{
        font-size:16px;
    }

}
 .login-box{
            width:50%;
            max-width:420px;
            background:#fff;
            padding:35px;
            border-radius:20px;
            box-shadow:0 10px 30px rgba(0,0,0,0.2);
            margin: auto;
            margin-top: 20px;
        }

        .logo{
            text-align:center;
            margin-bottom:25px;
        }

        .logo h2{
            font-weight:700;
            color:#0f172a;
        }

        .form-control{
            height:50px;
            border-radius:12px;
        }

        .btn-login{
            height:50px;
            border-radius:12px;
            font-size:18px;
            font-weight:600;
            background:#2563eb;
            border:none;
        }

        .btn-login:hover{
            background:#1d4ed8;
        }

        .register-link{
            text-align:center;
            margin-top:15px;
        }
@media(max-width:576px){

    .login-box{
        padding:25px;
        border-radius:16px;
         width:100%;
    }

    .logo h2{
        font-size:26px;
    }

    .btn-login{
        font-size:16px;
    }

}        
        
.category-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    height:100%;
}

.category-card:hover{
    transform:translateY(-10px);
}

.category-img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:20px;
}

/*
|--------------------------------------------------------------------------
| Dashboard Wrapper
|--------------------------------------------------------------------------
*/

.dashboard-wrapper{
    padding:50px 0;
}

/*
|--------------------------------------------------------------------------
| Hero Card
|--------------------------------------------------------------------------
*/

.hero-card{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    border-radius:30px;
    padding:45px;
    overflow:hidden;
    position:relative;
}

.hero-card::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
}

.hero-title{
    font-size:42px;
    font-weight:800;
}

.hero-subtitle{
    color:#cbd5e1;
    margin-top:10px;
    font-size:18px;
}

/*
|--------------------------------------------------------------------------
| Coins Card
|--------------------------------------------------------------------------
*/

.coin-card{
    background:linear-gradient(135deg,#f59e0b,#fbbf24);
    border-radius:25px;
    padding:30px;
    color:#fff;
    height:100%;
}

.coin-value{
    font-size:50px;
    font-weight:800;
}

/*
|--------------------------------------------------------------------------
| Stats Cards
|--------------------------------------------------------------------------
*/

.stats-card{
    background:#fff;
    border-radius:25px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    height:100%;
    transition:0.3s;
}

.stats-card:hover{
    transform:translateY(-8px);
}

.stats-icon{
    width:65px;
    height:65px;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    font-size:28px;
    margin-bottom:20px;
}

.stats-value{
    font-size:38px;
    font-weight:800;
    color:#0f172a;
}

.stats-title{
    color:#64748b;
    margin-top:5px;
}

/*
|--------------------------------------------------------------------------
| Action Buttons
|--------------------------------------------------------------------------
*/

.action-btn{
    border-radius:18px;
    padding:18px 30px;
    font-size:18px;
    font-weight:700;
    transition:0.3s;
}

.action-btn:hover{
    transform:translateY(-3px);
}

/*
|--------------------------------------------------------------------------
| Quick Actions
|--------------------------------------------------------------------------
*/

.quick-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.quick-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:30px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .hero-title{
        font-size:32px;
    }

    .coin-value{
        font-size:38px;
    }

    .stats-value{
        font-size:30px;
    }

}


.profile-wrapper{
    padding:50px 0;
}

.profile-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.profile-image{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #e2e8f0;
}

.profile-title{
    font-size:36px;
    font-weight:800;
    color:#0f172a;
}

.section-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
    color:#0f172a;
}

.form-control{
    height:55px;
    border-radius:15px;
}

.btn-save{
    height:55px;
    border-radius:15px;
    font-size:18px;
    font-weight:700;
}

.kyc-badge{
    background:#f59e0b;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    display:inline-block;
}

/*
|--------------------------------------------------------------------------
| Withdraw Status Card
|--------------------------------------------------------------------------
*/

.withdraw-status-card{
    background:#fff;
    border-radius:25px;
    padding:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.category-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    cursor:pointer;
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(37,99,235,0.15);
}

.category-icon{
    font-size:50px;
    margin-bottom:15px;
}

.category-card h5{
    color:#0f172a;
    font-weight:700;
}
.quick-card{
    background:#ffffff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    border:1px solid #e2e8f0;
    margin-top: 20px;
}

/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
*/

.quick-title{
    font-size:28px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:30px;
    display:flex;
    align-items:center;
    gap:10px;
}

/*
|--------------------------------------------------------------------------
| Table Styling
|--------------------------------------------------------------------------
*/

.quick-card .table{
    margin-bottom:0;
    border-collapse:separate;
    border-spacing:0 12px;
}

/*
|--------------------------------------------------------------------------
| Table Header
|--------------------------------------------------------------------------
*/

.quick-card .table thead tr{
    border-radius:15px;
    overflow:hidden;
}

.quick-card .table thead th{
    background:#0f172a !important;
    color:#fff;
    padding:18px;
    font-size:15px;
    font-weight:700;
    border:none;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

/*
|--------------------------------------------------------------------------
| Table Body
|--------------------------------------------------------------------------
*/

.quick-card .table tbody tr{
    background:#f8fafc;
    transition:0.3s;
    border-radius:18px;
}

.quick-card .table tbody tr:hover{
    transform:translateY(-3px);
    background:#eff6ff;
    box-shadow:0 10px 20px rgba(37,99,235,0.08);
}

/*
|--------------------------------------------------------------------------
| Table Cells
|--------------------------------------------------------------------------
*/

.quick-card .table tbody td{
    padding:18px;
    vertical-align:middle;
    border-top:none;
    font-size:15px;
}

/*
|--------------------------------------------------------------------------
| Category Name
|--------------------------------------------------------------------------
*/

.quick-card .table tbody td strong{
    color:#0f172a;
    font-size:16px;
    font-weight:700;
}

/*
|--------------------------------------------------------------------------
| Correct Answers
|--------------------------------------------------------------------------
*/

.quick-card .text-success{
    color:#16a34a !important;
    font-size:16px;
}

/*
|--------------------------------------------------------------------------
| Wrong Answers
|--------------------------------------------------------------------------
*/

.quick-card .text-danger{
    color:#dc2626 !important;
    font-size:16px;
}

/*
|--------------------------------------------------------------------------
| Score
|--------------------------------------------------------------------------
*/

.quick-card .text-primary{
    color:#2563eb !important;
    font-size:16px;
}

/*
|--------------------------------------------------------------------------
| Mobile Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .quick-card{
        padding:20px;
        border-radius:22px;
    }

    .quick-title{
        font-size:22px;
    }

    .quick-card .table thead{
        display:none;
    }

    .quick-card .table,
    .quick-card .table tbody,
    .quick-card .table tr,
    .quick-card .table td{
        display:block;
        width:100%;
    }

    .quick-card .table tr{
        margin-bottom:18px;
        padding:15px;
        border-radius:18px;
    }

    .quick-card .table td{
        text-align:right;
        position:relative;
        padding-left:50%;
        border:none;
    }

    .quick-card .table td::before{
        content:attr(data-label);
        position:absolute;
        left:15px;
        width:45%;
        text-align:left;
        font-weight:700;
        color:#334155;
    }
}

/*
|--------------------------------------------------------------------------
| Main Footer
|--------------------------------------------------------------------------
*/

.main-footer{
    background:#0f172a;
    color:#fff;
    margin-top:80px;
}

/*
|--------------------------------------------------------------------------
| Footer Top
|--------------------------------------------------------------------------
*/

.footer-top{
    padding:80px 0 50px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

/*
|--------------------------------------------------------------------------
| Footer Logo
|--------------------------------------------------------------------------
*/

.footer-logo{
    font-size:32px;
    font-weight:800;
    margin-bottom:20px;
}

/*
|--------------------------------------------------------------------------
| Footer About
|--------------------------------------------------------------------------
*/

.footer-about{
    color:#cbd5e1;
    line-height:1.9;
    font-size:15px;
}

/*
|--------------------------------------------------------------------------
| Footer Titles
|--------------------------------------------------------------------------
*/

.footer-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.footer-title::after{
    content:'';
    width:50px;
    height:3px;
    background:#2563eb;
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:10px;
}

/*
|--------------------------------------------------------------------------
| Footer Links
|--------------------------------------------------------------------------
*/

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links li a{
    color:#cbd5e1;
    text-decoration:none;
    transition:0.3s;
    font-size:15px;
}

.footer-links li a:hover{
    color:#fff;
    padding-left:6px;
}

/*
|--------------------------------------------------------------------------
| Social Icons
|--------------------------------------------------------------------------
*/

.footer-social{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.footer-social a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:0.3s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#2563eb;
    transform:translateY(-5px);
}

/*
|--------------------------------------------------------------------------
| Newsletter
|--------------------------------------------------------------------------
*/

.newsletter-form{
    margin-top:20px;
    position:relative;
}

.newsletter-form input{
    width:100%;
    height:55px;
    border:none;
    border-radius:15px;
    padding:0 20px;
    outline:none;
    font-size:15px;
}

.newsletter-form button{
    width:100%;
    height:50px;
    border:none;
    background:#2563eb;
    color:#fff;
    font-weight:700;
    border-radius:15px;
    margin-top:12px;
    transition:0.3s;
}

.newsletter-form button:hover{
    background:#1d4ed8;
}

/*
|--------------------------------------------------------------------------
| Footer Bottom
|--------------------------------------------------------------------------
*/

.footer-bottom{
    padding:25px 0;
}

.copyright-text{
    margin:0;
    color:#94a3b8;
    font-size:15px;
}

/*
|--------------------------------------------------------------------------
| Footer Bottom Links
|--------------------------------------------------------------------------
*/

.footer-bottom-links{
    display:flex;
    gap:25px;
    justify-content:flex-end;
}

.footer-bottom-links a{
    color:#94a3b8;
    text-decoration:none;
    transition:0.3s;
    font-size:15px;
}

.footer-bottom-links a:hover{
    color:#fff;
}

/*
|--------------------------------------------------------------------------
| Mobile Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .footer-top{
        padding:60px 0 30px;
    }

    .footer-logo{
        font-size:28px;
    }

    .footer-title{
        margin-top:20px;
    }

    .footer-bottom-links{
        justify-content:center;
        margin-top:15px;
        flex-wrap:wrap;
    }

    .copyright-text{
        text-align:center;
    }

}

/*
|--------------------------------------------------------------------------
| Main Navbar
|--------------------------------------------------------------------------
*/

.main-navbar{
    background:#ffffff;
    padding:15px 0;
    box-shadow:0 5px 25px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:999;
}

/*
|--------------------------------------------------------------------------
| Logo
|--------------------------------------------------------------------------
*/

.logo-box{
    
    height:75px;
    border-radius:18px;
    overflow:hidden;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:14px;
}

.logo-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.brand-title{
    display:block;
    font-size:24px;
    font-weight:800;
    color:#0f172a;
    line-height:1.2;
}

.brand-subtitle{
    color:#64748b;
    font-size:12px;
    letter-spacing:1px;
}

/*
|--------------------------------------------------------------------------
| Nav Links
|--------------------------------------------------------------------------
*/

.navbar-nav{
    gap:15px;
}

.nav-link{
    font-size:16px;
    font-weight:600;
    color:#334155 !important;
    transition:0.3s;
    position:relative;
}

.nav-link:hover,
.nav-link.active{
    color:#2563eb !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#2563eb;
    transition:0.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

/*
|--------------------------------------------------------------------------
| Guest Buttons
|--------------------------------------------------------------------------
*/

.btn-login{
    padding:12px 22px;
    border-radius:14px;
    border:1px solid #cbd5e1;
    text-decoration:none;
    font-weight:700;
    color:#0f172a;
    transition:0.3s;
}

.btn-login:hover{
    background:#f8fafc;
}

.btn-register{
    padding:12px 24px;
    border-radius:14px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.btn-register:hover{
    background:#1d4ed8;
    color:#fff;
}

/*
|--------------------------------------------------------------------------
| Coin Badge
|--------------------------------------------------------------------------
*/

.coin-badge{
    background:#fef3c7;
    color:#92400e;
    padding:10px 18px;
    border-radius:40px;
    font-weight:700;
    font-size:15px;
}

/*
|--------------------------------------------------------------------------
| User Button
|--------------------------------------------------------------------------
*/

.user-btn{
    background:#fff;
    border:none;
    display:flex;
    align-items:center;
    gap:12px;
    padding:8px 14px;
    border-radius:18px;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.user-btn:hover{
    background:#f8fafc;
}

.user-avatar{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}

.user-info{
    text-align:left;
}

.user-name{
    display:block;
    font-weight:700;
    color:#0f172a;
    font-size:15px;
}

.user-info small{
    color:#64748b;
    font-size:12px;
}

/*
|--------------------------------------------------------------------------
| Dropdown
|--------------------------------------------------------------------------
*/

.custom-dropdown{
    border:none;
    border-radius:20px;
    padding:12px;
    min-width:230px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.custom-dropdown .dropdown-item{
    padding:12px 15px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
    display:flex;
    align-items:center;
    gap:10px;
}

.custom-dropdown .dropdown-item:hover{
    background:#eff6ff;
    color:#2563eb;
}

/*
|--------------------------------------------------------------------------
| Mobile Navbar
|--------------------------------------------------------------------------
*/

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

@media(max-width:991px){

    .navbar-collapse{
        background:#fff;
        margin-top:20px;
        padding:20px;
        border-radius:20px;
        box-shadow:0 10px 30px rgba(0,0,0,0.06);
    }

    .navbar-nav{
        margin-bottom:20px;
    }

    .d-flex.align-items-center.gap-3{
        flex-direction:column;
        align-items:flex-start !important;
        width:100%;
    }

    .btn-login,
    .btn-register{
        width:100%;
        text-align:center;
    }

    .user-btn{
        width:100%;
        justify-content:space-between;
    }

    .coin-badge{
        width:100%;
        text-align:center;
    }

}
/*
|--------------------------------------------------------------------------
| Hero Section
|--------------------------------------------------------------------------
*/

.hero-section{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    padding:100px 0;
    color:#fff;
}

/*
|--------------------------------------------------------------------------
| Background Shapes
|--------------------------------------------------------------------------
*/

.hero-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
}

.hero-shape-1{
    width:300px;
    height:300px;
    top:-100px;
    left:-100px;
}

.hero-shape-2{
    width:200px;
    height:200px;
    bottom:50px;
    right:-80px;
}

.hero-shape-3{
    width:150px;
    height:150px;
    top:50%;
    left:45%;
}

/*
|--------------------------------------------------------------------------
| Hero Badge
|--------------------------------------------------------------------------
*/

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    padding:12px 22px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

/*
|--------------------------------------------------------------------------
| Hero Title
|--------------------------------------------------------------------------
*/

.hero-title{
    font-size:65px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-title span{
    color:#facc15;
}

/*
|--------------------------------------------------------------------------
| Description
|--------------------------------------------------------------------------
*/

.hero-description{
    font-size:20px;
    line-height:2;
    color:#cbd5e1;
    max-width:650px;
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-start{
    background:#facc15;
    color:#0f172a;
    padding:16px 35px;
    border-radius:16px;
    font-size:18px;
    font-weight:800;
    text-decoration:none;
    transition:0.3s;
}

.btn-start:hover{
    transform:translateY(-5px);
    background:#eab308;
    color:#0f172a;
}

.btn-leaderboard{
    background:rgba(255,255,255,0.12);
    color:#fff;
    padding:16px 35px;
    border-radius:16px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
    backdrop-filter:blur(10px);
}

.btn-leaderboard:hover{
    background:rgba(255,255,255,0.2);
    color:#fff;
    transform:translateY(-5px);
}

/*
|--------------------------------------------------------------------------
| Stats
|--------------------------------------------------------------------------
*/

.hero-stats{
    display:flex;
    gap:25px;
    margin-top:50px;
    flex-wrap:wrap;
}

.stat-box{
    background:rgba(255,255,255,0.08);
    padding:20px 28px;
    border-radius:20px;
    backdrop-filter:blur(10px);
    min-width:160px;
}

.stat-box h3{
    font-size:32px;
    font-weight:800;
    margin-bottom:5px;
}

.stat-box span{
    color:#cbd5e1;
    font-size:15px;
}

/*
|--------------------------------------------------------------------------
| Hero Image
|--------------------------------------------------------------------------
*/

.hero-image-wrapper{
    position:relative;
    display:inline-block;
}

.hero-glow{
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(59,130,246,0.35);
    border-radius:50%;
    filter:blur(80px);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.hero-image{
    width:100%;
    max-width:520px;
    position:relative;
    z-index:2;
    animation:floatImage 4s ease-in-out infinite;
}

/*
|--------------------------------------------------------------------------
| Floating Cards
|--------------------------------------------------------------------------
*/

.floating-card{
    position:absolute;
    background:#fff;
    color:#0f172a;
    padding:15px 22px;
    border-radius:18px;
    font-weight:700;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    z-index:5;
    animation:floatCard 3s ease-in-out infinite;
}

.card-1{
    top:10%;
    left:-10%;
}

.card-2{
    top:50%;
    right:-10%;
}

.card-3{
    bottom:10%;
    left:10%;
}

/*
|--------------------------------------------------------------------------
| Animations
|--------------------------------------------------------------------------
*/

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

/*
|--------------------------------------------------------------------------
| Mobile Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:991px){

    .hero-section{
        padding:80px 0;
        text-align:center;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-description{
        font-size:17px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
    }

    .floating-card{
        display:none;
    }

}

@media(max-width:576px){

    .hero-title{
        font-size:34px;
    }

    .btn-start,
    .btn-leaderboard{
        width:100%;
    }

    .stat-box{
        width:100%;
    }

}

/*
|--------------------------------------------------------------------------
| Features Section
|--------------------------------------------------------------------------
*/

.features-section{
    position:relative;
    padding:110px 0;
    background:#f8fafc;
    overflow:hidden;
}

/*
|--------------------------------------------------------------------------
| Background Shapes
|--------------------------------------------------------------------------
*/

.feature-bg-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(37,99,235,0.05);
}

.shape-1{
    width:300px;
    height:300px;
    top:-120px;
    left:-120px;
}

.shape-2{
    width:220px;
    height:220px;
    bottom:-80px;
    right:-80px;
}

/*
|--------------------------------------------------------------------------
| Section Header
|--------------------------------------------------------------------------
*/

.section-header{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.section-badge{
    display:inline-block;
    padding:12px 24px;
    background:#eff6ff;
    color:#2563eb;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.section-title{
    font-size:52px;
    font-weight:900;
    line-height:1.3;
    color:#0f172a;
    margin-bottom:22px;
}

.section-subtitle{
    font-size:19px;
    color:#64748b;
    line-height:2;
}

/*
|--------------------------------------------------------------------------
| Feature Card
|--------------------------------------------------------------------------
*/

.feature-card-pro{
    position:relative;
    background:#ffffff;
    border-radius:30px;
    padding:45px 35px;
    overflow:hidden;
    transition:0.4s;
    height:100%;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.feature-card-pro:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(37,99,235,0.12);
    border-color:#bfdbfe;
}

/*
|--------------------------------------------------------------------------
| Glow Effect
|--------------------------------------------------------------------------
*/

.feature-glow{
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(37,99,235,0.08);
    border-radius:50%;
    top:-80px;
    right:-80px;
    transition:0.4s;
}

.feature-card-pro:hover .feature-glow{
    transform:scale(1.2);
}

/*
|--------------------------------------------------------------------------
| Icon Box
|--------------------------------------------------------------------------
*/

.feature-icon-box{
    width:90px;
    height:90px;
    border-radius:25px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    color:#fff;
    margin-bottom:30px;
    box-shadow:0 10px 25px rgba(37,99,235,0.3);
}

/*
|--------------------------------------------------------------------------
| Feature Title
|--------------------------------------------------------------------------
*/

.feature-title{
    font-size:28px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
    line-height:1.4;
}

/*
|--------------------------------------------------------------------------
| Feature Description
|--------------------------------------------------------------------------
*/

.feature-description{
    color:#64748b;
    line-height:2;
    font-size:16px;
    margin-bottom:30px;
}

/*
|--------------------------------------------------------------------------
| Footer Tag
|--------------------------------------------------------------------------
*/

.feature-footer{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#eff6ff;
    color:#2563eb;
    font-weight:700;
    font-size:14px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:991px){

    .section-title{
        font-size:40px;
    }

}

@media(max-width:768px){

    .features-section{
        padding:80px 0;
    }

    .section-title{
        font-size:32px;
    }

    .section-subtitle{
        font-size:16px;
    }

    .feature-card-pro{
        padding:35px 25px;
    }

    .feature-title{
        font-size:24px;
    }

}

/*
|--------------------------------------------------------------------------
| Category Section
|--------------------------------------------------------------------------
*/

.category-section{
    position:relative;
    padding:110px 0;
    background:linear-gradient(180deg,#ffffff,#f8fafc);
    overflow:hidden;
}

/*
|--------------------------------------------------------------------------
| Shapes
|--------------------------------------------------------------------------
*/

.category-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(37,99,235,0.05);
}

.shape-left{
    width:300px;
    height:300px;
    top:-120px;
    left:-120px;
}

.shape-right{
    width:250px;
    height:250px;
    bottom:-100px;
    right:-100px;
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.category-header{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.category-badge{
    display:inline-block;
    background:#eff6ff;
    color:#2563eb;
    padding:12px 24px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.category-main-title{
    font-size:52px;
    font-weight:900;
    color:#0f172a;
    margin-bottom:20px;
}

.category-subtitle{
    font-size:19px;
    color:#64748b;
    line-height:2;
}

/*
|--------------------------------------------------------------------------
| Category Link
|--------------------------------------------------------------------------
*/

.category-link{
    text-decoration:none;
}

/*
|--------------------------------------------------------------------------
| Card
|--------------------------------------------------------------------------
*/

.category-card-pro{
    position:relative;
    background:#fff;
    border-radius:30px;
    padding:40px 25px;
    overflow:hidden;
    transition:0.4s;
    text-align:center;
    height:100%;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.category-card-pro:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(37,99,235,0.12);
    border-color:#bfdbfe;
}

/*
|--------------------------------------------------------------------------
| Glow
|--------------------------------------------------------------------------
*/

.category-glow{
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(37,99,235,0.06);
    border-radius:50%;
    top:-90px;
    right:-90px;
}

/*
|--------------------------------------------------------------------------
| Icon Box
|--------------------------------------------------------------------------
*/

.category-icon-box{
    width:100px;
    height:100px;
    border-radius:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    margin:auto;
    margin-bottom:28px;
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

/*
|--------------------------------------------------------------------------
| Background Colors
|--------------------------------------------------------------------------
*/

.cricket-bg{
    background:linear-gradient(135deg,#22c55e,#16a34a);
}

.bollywood-bg{
    background:linear-gradient(135deg,#f97316,#ea580c);
}

.tech-bg{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.gk-bg{
    background:linear-gradient(135deg,#8b5cf6,#7c3aed);
}

/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
*/

.category-title{
    font-size:28px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

/*
|--------------------------------------------------------------------------
| Description
|--------------------------------------------------------------------------
*/

.category-desc{
    color:#64748b;
    font-size:15px;
    line-height:1.9;
    margin-bottom:28px;
}

/*
|--------------------------------------------------------------------------
| Play Now
|--------------------------------------------------------------------------
*/

.play-now{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:#eff6ff;
    color:#2563eb;
    font-weight:700;
    transition:0.3s;
}

.category-card-pro:hover .play-now{
    background:#2563eb;
    color:#fff;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:991px){

    .category-main-title{
        font-size:40px;
    }

}

@media(max-width:768px){

    .category-section{
        padding:80px 0;
    }

    .category-main-title{
        font-size:32px;
    }

    .category-subtitle{
        font-size:16px;
    }

    .category-card-pro{
        padding:30px 18px;
        border-radius:24px;
    }

    .category-icon-box{
        width:80px;
        height:80px;
        font-size:38px;
    }

    .category-title{
        font-size:22px;
    }

    .play-now{
        font-size:14px;
        padding:10px 18px;
    }

}
/*
|--------------------------------------------------------------------------
| CTA Main Section
|--------------------------------------------------------------------------
*/

.cta-main-section{
    position:relative;
    padding:120px 0;
    background:#f8fafc;
    overflow:hidden;
}

/*
|--------------------------------------------------------------------------
| Shapes
|--------------------------------------------------------------------------
*/

.cta-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(37,99,235,0.05);
}

.shape-1{
    width:300px;
    height:300px;
    top:-120px;
    left:-120px;
}

.shape-2{
    width:220px;
    height:220px;
    bottom:-80px;
    right:-80px;
}

.shape-3{
    width:180px;
    height:180px;
    top:50%;
    left:45%;
}

/*
|--------------------------------------------------------------------------
| Wrapper
|--------------------------------------------------------------------------
*/

.cta-wrapper{
    position:relative;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    border-radius:40px;
    padding:70px;
    overflow:hidden;
    color:#fff;
    box-shadow:0 25px 60px rgba(15,23,42,0.25);
}

/*
|--------------------------------------------------------------------------
| Badge
|--------------------------------------------------------------------------
*/

.cta-badge{
    display:inline-block;
    padding:12px 24px;
    background:rgba(255,255,255,0.12);
    border-radius:50px;
    font-weight:700;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
*/

.cta-title{
    font-size:58px;
    font-weight:900;
    line-height:1.3;
    margin-bottom:25px;
}

.cta-title span{
    color:#facc15;
}

/*
|--------------------------------------------------------------------------
| Description
|--------------------------------------------------------------------------
*/

.cta-description{
    font-size:19px;
    color:#cbd5e1;
    line-height:2;
    max-width:650px;
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.cta-buttons{
    margin-top:40px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-join-now{
    background:#facc15;
    color:#0f172a;
    padding:18px 38px;
    border-radius:18px;
    font-size:18px;
    font-weight:800;
    text-decoration:none;
    transition:0.3s;
}

.btn-join-now:hover{
    transform:translateY(-5px);
    background:#eab308;
    color:#0f172a;
}

.btn-view-leaderboard{
    background:rgba(255,255,255,0.12);
    color:#fff;
    padding:18px 38px;
    border-radius:18px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
    backdrop-filter:blur(10px);
}

.btn-view-leaderboard:hover{
    background:rgba(255,255,255,0.2);
    color:#fff;
    transform:translateY(-5px);
}

/*
|--------------------------------------------------------------------------
| Stats
|--------------------------------------------------------------------------
*/

.cta-stats{
    display:flex;
    gap:20px;
    margin-top:50px;
    flex-wrap:wrap;
}

.cta-stat-box{
    background:rgba(255,255,255,0.08);
    padding:20px 28px;
    border-radius:20px;
    min-width:160px;
    backdrop-filter:blur(10px);
}

.cta-stat-box h3{
    font-size:34px;
    font-weight:900;
    margin-bottom:5px;
}

.cta-stat-box span{
    color:#cbd5e1;
    font-size:15px;
}

/*
|--------------------------------------------------------------------------
| Image Wrapper
|--------------------------------------------------------------------------
*/

.cta-image-wrapper{
    position:relative;
    display:inline-block;
}

/*
|--------------------------------------------------------------------------
| Glow
|--------------------------------------------------------------------------
*/

.cta-glow{
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(59,130,246,0.35);
    border-radius:50%;
    filter:blur(80px);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/*
|--------------------------------------------------------------------------
| Image
|--------------------------------------------------------------------------
*/

.cta-image{
    position:relative;
    z-index:2;
    width:100%;
    max-width:420px;
    animation:floatImage 4s ease-in-out infinite;
}

/*
|--------------------------------------------------------------------------
| Floating Cards
|--------------------------------------------------------------------------
*/

.cta-floating-card{
    position:absolute;
    background:#fff;
    color:#0f172a;
    padding:14px 22px;
    border-radius:18px;
    font-weight:700;
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
    z-index:5;
    animation:floatCard 3s ease-in-out infinite;
}

.card-top{
    top:10%;
    left:-10%;
}

.card-bottom{
    bottom:10%;
    right:-10%;
}

/*
|--------------------------------------------------------------------------
| Animations
|--------------------------------------------------------------------------
*/

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:991px){

    .cta-wrapper{
        padding:50px 35px;
        text-align:center;
    }

    .cta-title{
        font-size:42px;
    }

    .cta-description{
        font-size:17px;
    }

    .cta-buttons{
        justify-content:center;
    }

    .cta-stats{
        justify-content:center;
    }

    .cta-floating-card{
        display:none;
    }

}

@media(max-width:576px){

    .cta-main-section{
        padding:80px 0;
    }

    .cta-wrapper{
        padding:35px 20px;
        border-radius:28px;
    }

    .cta-title{
        font-size:32px;
    }

    .btn-join-now,
    .btn-view-leaderboard{
        width:100%;
        text-align:center;
    }

    .cta-stat-box{
        width:100%;
    }

}
/*
|--------------------------------------------------------------------------
| Quiz Category Section
|--------------------------------------------------------------------------
*/

.quiz-category-section{
    position:relative;
    padding:110px 0;
    background:linear-gradient(180deg,#ffffff,#f8fafc);
    overflow:hidden;
}

/*
|--------------------------------------------------------------------------
| Background Shapes
|--------------------------------------------------------------------------
*/

.quiz-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(37,99,235,0.05);
}

.shape-1{
    width:320px;
    height:320px;
    top:-120px;
    left:-120px;
}

.shape-2{
    width:250px;
    height:250px;
    bottom:-100px;
    right:-100px;
}

.shape-3{
    width:180px;
    height:180px;
    top:50%;
    left:45%;
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.quiz-category-header{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.quiz-badge{
    display:inline-block;
    background:#eff6ff;
    color:#2563eb;
    padding:12px 24px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:22px;
}

.quiz-main-title{
    font-size:54px;
    font-weight:900;
    color:#0f172a;
    line-height:1.3;
    margin-bottom:22px;
}

.quiz-subtitle{
    font-size:19px;
    color:#64748b;
    line-height:2;
}

/*
|--------------------------------------------------------------------------
| Category Card
|--------------------------------------------------------------------------
*/

.quiz-category-card{
    position:relative;
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    transition:0.4s;
    height:100%;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.quiz-category-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(37,99,235,0.14);
    border-color:#bfdbfe;
}

/*
|--------------------------------------------------------------------------
| Card Glow
|--------------------------------------------------------------------------
*/

.card-glow{
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(37,99,235,0.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
    transition:0.4s;
}

.quiz-category-card:hover .card-glow{
    transform:scale(1.2);
}

/*
|--------------------------------------------------------------------------
| Image
|--------------------------------------------------------------------------
*/

.category-image-wrapper{
    position:relative;
    height:240px;
    overflow:hidden;
}

.category-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.quiz-category-card:hover .category-image{
    transform:scale(1.08);
}

/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
*/

.category-content{
    padding:30px;
}

.category-name{
    font-size:28px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.category-text{
    color:#64748b;
    line-height:1.9;
    margin-bottom:25px;
    font-size:15px;
}

/*
|--------------------------------------------------------------------------
| Info
|--------------------------------------------------------------------------
*/

.category-info{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:28px;
}

.category-info span{
    background:#eff6ff;
    color:#2563eb;
    padding:10px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

/*
|--------------------------------------------------------------------------
| Button
|--------------------------------------------------------------------------
*/

.play-btn{
    display:block;
    width:100%;
    text-align:center;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    padding:16px 22px;
    border-radius:18px;
    text-decoration:none;
    font-size:17px;
    font-weight:800;
    transition:0.3s;
}

.play-btn:hover{
    background:linear-gradient(135deg,#1d4ed8,#1e40af);
    color:#fff;
    transform:translateY(-3px);
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:991px){

    .quiz-main-title{
        font-size:42px;
    }

}

@media(max-width:768px){

    .quiz-category-section{
        padding:80px 0;
    }

    .quiz-main-title{
        font-size:34px;
    }

    .quiz-subtitle{
        font-size:16px;
    }

    .category-image-wrapper{
        height:200px;
    }

    .category-content{
        padding:22px;
    }

    .category-name{
        font-size:24px;
    }

}