        body {
            /* font-family: 'Inter', sans-serif;
            background-color: #0f172a; */
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            }
        .wrapper {
            width: 650px !important;
            margin: 0 auto;
            background: #f5f5f5;
            min-height: 100vh;
        }
        /* .grapper {
            width: 800px !important;
            margin: 0 auto;
            min-height: 100vh;
        } */
        .ticker {
            background: linear-gradient(90deg, #87CEEB 0%, #ADD8E6 100%);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .pad{
            margin-left: 1%;
            margin-top: 2%;
        }
        .vip-box {
            background: linear-gradient(90deg, #8A2BE2 0%, #9932CC 100%);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .wit-box {
            background: linear-gradient(90deg, #fbf9fc 0%, #f7f6f8 100%);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-height: 200px;
            overflow: hidden;
            padding: 10 auto;
        }
        .up-box {
            background: linear-gradient(90deg, #fbf9fc 0%, #f7f6f8 100%);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 10 auto;
        }
        .balance-box {
            background: linear-gradient(90deg, #FFC0CB 0%, #FFB6C1 100%);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .card-box {
            transition: all 0.3s ease;
        }
        .card-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .floating-footer {
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        }
        .dark:bg-gray-800{
            background-color: #fff !important;
        }


        /**AUTH STYLES***/

        .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
        }
        .card-shadow {
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .input-focus:focus {
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
        }
        

        /***DEPOSIT-STYLES*****/


        .coinbase-btn:hover {
            transform: translateY(-1px);
        }
        .amount-option:hover {
            background-color: #1e293b;
            transform: scale(1.03);
        }
        .amount-option.selected {
            background-color: #1d4ed8;
            border-color: #1d4ed8;
        }
        .deposit-card {
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
        }
        input::-webkit-outer-spin-button,
        input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }



        /****WITHDRAW-STYLES*******/
        
        .custom-shadow {
            box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
        }
        .input-error {
            border-color: #ef4444;
        }
        .error-message {
            color: #ef4444;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }
        .animate-fade-in {
            animation: fadeIn 0.3s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .withdrawal-method-icon {
            transition: all 0.2s ease;
        }
        .withdrawal-method-option:hover .withdrawal-method-icon {
            transform: scale(1.1);
        }
        .withdrawal-method-option.selected {
            border-color: #4f46e5;
            background-color: #eef2ff;
        }



        /***********FAQ-STYLES***********/

        .ticker {
            background: linear-gradient(90deg, #87CEEB 0%, #ADD8E6 100%);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .balance-box {
            background: linear-gradient(90deg, #FFC0CB 0%, #FFB6C1 100%);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .social-icon {
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            transform: scale(1.1);
        }
        .menu-item {
            transition: all 0.2s ease;
        }
        .menu-item:hover {
            background-color: #f3f4f6;
        }
        .faq-item {
            transition: all 0.2s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
            opacity: 1;
            padding-top: 10px;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.3s ease;
        }


        /************ABOUT-STYLES********************/

         .hero-gradient {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        }
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .stat-card {
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            transform: scale(1.03);
        }
        .timeline-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 24px;
            top: 32px;
            height: calc(100% - 32px);
            width: 2px;
            background: #e5e7eb;
        }
       


        /*****************POOL-STYLES*****************/

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .spinning {
            animation: spin 2s linear infinite;
        }
        @keyframes pulse {
            0% { opacity: 0.7; }
            50% { opacity: 1; }
            100% { opacity: 0.7; }
        }
        .pulsing {
            animation: pulse 2s infinite;
        }


        /**************CHANGE-PASSSTYLE***************/

        .password-strength {
            transition: all 0.3s ease;
        }
        .password-input-container {
            position: relative;
        }
        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #6b7280;
        }



        /**********************ADMIN STYLES******************/

/* Custom styles for switches */
        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }
        
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: #4f46e5;
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        /* Animation for section toggle */
        .section-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .section-content.open {
            max-height: 2000px;
            transition: max-height 0.5s ease-in;
        }
        
        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 100;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
        }
        
        .modal-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 600px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .close:hover {
            color: black;
        }
        
        /* Sidebar animation */
        .sidebar {
            transition: all 0.3s ease;
        }
        
        .sidebar.collapsed {
            width: 64px;
            overflow: hidden;
        }
        
        .sidebar.collapsed .nav-text,
        .sidebar.collapsed h1,
        .sidebar.collapsed .fa-times {
            display: none;
        }
        
        .sidebar.collapsed .fa-bars {
            display: inline-block;
        }
        
        .sidebar.collapsed nav a {
            justify-content: center;
        }
        
        .sidebar.collapsed:hover {
            width: 256px;
        }
        
        .sidebar.collapsed:hover .nav-text,
        .sidebar.collapsed:hover h1,
        .sidebar.collapsed:hover .fa-times {
            display: inline;
        }
        
        .sidebar.collapsed:hover .fa-bars {
            display: none;
        }
        
        .sidebar.collapsed:hover nav a {
            justify-content: flex-start;
        }
        
        /* Table styles */
        .data-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .data-table th, .data-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .data-table th {
            background-color: #f8fafc;
            font-weight: 600;
        }
        
        .data-table tr:hover {
            background-color: #f8fafc;
        }