      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Header Styles */
        .site-header {
            background: transparent;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 650px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4), rgba(0,0,0,0));
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        /* Hero Section with Centered Logo */
        .hero-section {
            text-align: center;
            padding: 40px 20px;
            border-radius: 20px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            min-height: 200px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/bg-hero-2.jpg') no-repeat center center;
            background-size: cover;
            filter: blur(2px);
            -webkit-filter: blur(2px);
            transform: scale(1.05);
            border-radius: 20px;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            border-radius: 20px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #fbbf24;
            font-weight: 500;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            margin-top: 20px;
        }

        .hero-logo {
            max-width: 300px;
            margin: 0 auto;
        }

        .hero-logo img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 4px 20px rgba(251,191,36,0.3));
        }

        .header-nav {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn-login,
        .btn-register {
            padding: 8px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-block;
            cursor: pointer;
            border: 2px solid;
            background: transparent;
            font-family: 'Kanit', 'Inter', sans-serif;
        }

        .btn-login {
            background: transparent;
            color: #fbbf24;
            border: 2px solid #fbbf24;
        }

        .btn-login:hover {
            background: #fbbf24;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-register {
            background: #fbbf24;
            color: #000;
            border: 2px solid #fbbf24;
        }

        .btn-register:hover {
            background: #f59e0b;
            border-color: #f59e0b;
            transform: translateY(-2px);
        }

        body {
            font-family: 'Kanit', 'Inter', sans-serif;
            background: url('images/bgbg.jpg') no-repeat center center fixed;
            background-size: cover;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding: 85px 15px 15px 15px; /* Top padding for fixed header */
            color: #fff;
        }

        .main-container {
            max-width: 600px;
            margin: 0 auto;
            width: 100%;
        }

        /* Register GIF Button Above Top Banner */
        .register-btn-top {
            text-align: center;
            margin-bottom: 15px;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .register-btn-top:hover {
            transform: scale(1.02);
        }

        .register-btn-top a {
            display: block;
            text-decoration: none;
        }

        .signup-gif-btn {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 18px;
            transition: transform 0.3s ease;
        }

        .register-btn-top:hover .signup-gif-btn {
            transform: scale(1.01);
        }

        /* Main Title */
        .main-title {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 15px 0 20px 0;
            color: #ffffff;
            letter-spacing: 1px;
        }

        /* Top Banner */
        .top-banner {
            margin-bottom: 20px;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .top-banner img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
        }

        .trust-banner {
            margin-bottom: 20px;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .trust-banner img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
        }

        .bottom-banner {
            margin-bottom: 20px;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .bottom-banner img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
        }

        /* Header Section */
        .header-section {
            text-align: center;
            margin-bottom: 10px;
            padding: 0px;
            min-height: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ปุ่มทองหลัก */
        .btn-gold {
            position: relative;
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            border-radius: 999px;
            text-decoration: none;
            overflow: hidden;
            background: linear-gradient(145deg, #fff6d1 0%, #ffd64e 25%, #f5ad2f 55%, #d7820e 75%, #ffec8c 100%);
            box-shadow:
                inset 0 1px 2px rgba(255,255,255,0.9),
                0 3px 0 #a86509,
                0 6px 15px rgba(0,0,0,0.5);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow:
                inset 0 1px 2px rgba(255,255,255,0.9),
                0 5px 0 #b6740a,
                0 12px 25px rgba(0,0,0,0.6);
        }

        /* ด้านใน */
        .btn-gold::before {
            content: "";
            position: absolute;
            inset: 4px 8px;
            border-radius: 999px;
            background: linear-gradient(180deg, #fff8c6 0%, #ffd046 45%, #f0a11d 70%, #ffe57b 100%);
            box-shadow:
                inset 0 1px 3px rgba(255,255,255,0.8),
                inset 0 -3px 5px rgba(0,0,0,0.4);
            z-index: 0;
        }

        .btn-gold > * { position: relative; z-index: 1; }

        /* วงกลมไอคอน */
        .btn-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            margin-right: 12px;
            background: linear-gradient(145deg, #fff2a5 0%, #ffcb3a 45%, #b05d09 100%);
            box-shadow:
                0 2px 4px rgba(0,0,0,0.6),
                inset 0 1px 3px rgba(255,255,255,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-icon-inner {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #2a2a2a 0%, #000 100%);
            box-shadow:
                inset 0 1px 3px rgba(255,255,255,0.15),
                inset 0 -3px 4px rgba(0,0,0,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-icon-inner i {
            font-size: 16px;
            color: #ffcd3a;
            text-shadow: 0 1px 2px rgba(0,0,0,0.6);
        }

        /* ข้อความทองเงา (Metallic Text Effect) */
        .btn-label {
            font-size: 20px;
            font-weight: 900;
            letter-spacing: 0.02em;
            background: linear-gradient(180deg, #fff8e1 0%, #f8d46c 35%, #f0ad27 55%, #ffec9c 85%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow:
                0 1px 0 #fff6d0,       /* แสงบน */
                0 -1px 0 #d69215,      /* เงาล่าง */
                0 3px 3px rgba(0,0,0,0.35); /* ความลึก */
        }

        .btn-row {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            padding: 0px;
        }

        .btn-gold {
            flex: 1;
            max-width: 50%;
            justify-content: center;
        }

        .site-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .site-subtitle {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #E0E0E0;
        }

        /* Stats Section */
        .stats-container {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .stat-box {
            flex: 1;
            background: rgba(0,0,0,0.3);
            border-radius: 12px;
            padding: 12px;
            text-align: center;
            border: 1px solid rgba(251,191,36,0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .stat-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(251,191,36,0.3);
        }

        .stat-box.updated {
            box-shadow: 0 0 15px rgba(251,191,36,0.5);
        }

        .stat-icon {
            font-size: 1.2rem;
            color: #fbbf24;
            margin-bottom: 5px;
        }

        .stat-value {
            color: #FFF;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 2px;
            transition: color 0.3s ease;
        }

        .stat-value.updated {
            color: #fbbf24;
        }

        .stat-label {
            color: #E0E0E0;
            font-size: 0.8rem;
        }


        .register-gif-container a {
            display: block;
            text-decoration: none;
        }

        .register-gif-container img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 18px;
            transition: transform 0.3s ease;
        }

        /* Jackpot Section */
        .jackpot-container {
            background: rgba(0,0,0,0.4);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(251,191,36,0.2);
            margin-bottom: 20px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .jackpot-title {
            text-align: center;
            font-size: 1.6rem;
            font-weight: 600;
            color: #fbbf24;
            margin-bottom: 15px;
        }

        .jackpot-amount {
            background: linear-gradient(45deg, #451a03, #fbbf24);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            position: relative;
            cursor: pointer;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: inset 0 0 10px rgba(255,255,255,0.2), 0 5px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .jackpot-amount:hover {
            transform: scale(1.02);
        }

        .jackpot-amount.updated {
            box-shadow: inset 0 0 10px rgba(255,255,255,0.2), 0 5px 20px rgba(251,191,36,0.5);
        }

        .jackpot-amount::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shine 2s infinite;
        }

        .amount-label {
            color: #E0E0E0;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .amount-value {
            color: #FFF;
            font-size: 2.2rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            transition: color 0.3s ease;
        }

        .amount-value.updated {
            color: #fbbf24;
        }

        .jackpot-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .info-item {
            background: rgba(0,0,0,0.2);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .info-item:hover {
            transform: translateY(-2px);
        }

        .info-item.updated {
            box-shadow: 0 0 10px rgba(251,191,36,0.3);
        }

        .info-label {
            color: #fbbf24;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .info-value {
            color: #FFF;
            font-size: 1.2rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .info-value.updated {
            color: #fbbf24;
        }

        /* Buttons Section */
        .buttons-container {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .btn {
            flex: 1;
            padding: 15px 25px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: linear-gradient(45deg, #eb3b5a, #fc5c65);
            color: white;
            box-shadow: 0 5px 15px rgba(235,59,90,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(235,59,90,0.4);
        }

        .btn-secondary {
            background: linear-gradient(45deg, #16cf0b, #20bf6b);
            color: white;
            box-shadow: 0 5px 15px rgba(22,207,11,0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(22,207,11,0.4);
        }

        /* Coin Animations */
        .coin {
            position: absolute;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: #FFF;
            animation: coinAnim 2s ease forwards;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
        }

        .coin.golden {
            background: linear-gradient(45deg, #fbbf24, #f59e0b);
            border: 2px solid #FFF;
            box-shadow: 0 0 20px rgba(251,191,36,0.6), inset 0 0 10px rgba(255,255,255,0.8);
        }

        .coin.collect {
            animation: collectCoin 1s cubic-bezier(.4,0,.2,1) forwards;
        }

        .coin::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.5), transparent);
            z-index: -1;
            animation: shimmer 1.5s linear infinite;
        }

        .coin::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 30%, transparent 70%);
            border-radius: 50%;
        }

        .coin-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        /* Animations */
        @keyframes coinAnim {
            0% { transform: translate(0,0) scale(1); opacity: 1; }
            100% { transform: translate(var(--tx),var(--ty)) scale(0.3); opacity: 0; }
        }

        @keyframes collectCoin {
            0% { transform: translate(var(--sx),var(--sy)) scale(1); opacity: 1; }
            60% { transform: translate(calc(var(--tx)*0.7),calc(var(--ty)*0.7)) scale(0.8); opacity: 1; }
            100% { transform: translate(var(--tx),var(--ty)) scale(0.4); opacity: 0; }
        }

        @keyframes shimmer {
            0% { transform: rotate(0); }
            100% { transform: rotate(360deg); }
        }

        @keyframes shine {
            to { left: 100%; }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Recent Deposits Section Styles */
        .deposits-container {
            background: rgba(0,0,0,0.4);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(251,191,36,0.2);
            margin-bottom: 20px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .deposits-title {
            text-align: center;
            font-size: 1.4rem;
            font-weight: 600;
            color: #fbbf24;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .deposits-title i {
            margin-right: 8px;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(16, 207, 11, 0.1);
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 0.7rem;
            color: #10cf0b;
            font-weight: 500;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: #10cf0b;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .deposits-list {
            display: flex;
            flex-direction: column;
            height: 415px;
            overflow: hidden;
            margin-bottom: 15px;
            border-radius: 12px;
            position: relative;
        }

        /* Scrollbar styles removed - no longer needed */

        .deposit-item {
            display: flex;
            align-items: center;
            background: rgba(0,0,0,0.25);
            border-radius: 12px;
            padding: 12px 15px;
            margin-bottom: 8px;
            animation: slideInLeft 0.5s ease;
            transition: all 0.3s ease;
            backdrop-filter: blur(3px);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .deposit-item.fade-out {
            animation: fadeOutSlide 0.5s ease forwards;
        }

        @keyframes fadeOutSlide {
            to {
                opacity: 0;
                transform: translateX(-30px);
                margin-bottom: 0;
                padding-top: 0;
                padding-bottom: 0;
                height: 0;
            }
        }

        .deposit-item:hover {
            background: rgba(255,255,255,0.05);
            transform: translateX(5px);
        }

        .deposit-item.new {
            background: rgba(16, 207, 11, 0.1);
            border-left: 3px solid #10cf0b;
        }

        .deposit-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
            overflow: hidden;
            border: 2px solid rgba(255,255,255,0.2);
        }

        .bank-avatar-icon {
            width: 28px;
            height: 28px;
            object-fit: contain;
            border-radius: 4px;
        }

        .deposit-info {
            flex: 1;
        }

        .deposit-name {
            color: #FFF;
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 2px;
        }

        .deposit-account {
            color: #fbbf24;
            font-size: 0.85rem;
            font-family: 'Courier New', monospace;
            margin-bottom: 2px;
            background: rgba(251,191,36,0.1);
            padding: 2px 6px;
            border-radius: 4px;
            display: inline-block;
        }

        .deposit-time {
            color: #E0E0E0;
            font-size: 0.8rem;
        }

        .deposit-amount {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .deposit-value {
            color: #10cf0b;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .deposit-method {
            color: #fbbf24;
            font-size: 0.7rem;
            background: rgba(251,191,36,0.1);
            padding: 2px 6px;
            border-radius: 8px;
            text-align: right;
            font-weight: 500;
        }

        .deposits-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            background: rgba(0,0,0,0.2);
            border-radius: 10px;
            padding: 12px;
            gap: 10px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .stat-item i {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        .stat-label {
            color: #E0E0E0;
            font-size: 0.8rem;
            display: block;
        }

        .stat-value {
            color: #FFF;
            font-size: 1rem;
            font-weight: 600;
        }

        /* Customer Reviews Section Styles */
        .reviews-container {
            background: rgba(0,0,0,0.4);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(251,191,36,0.2);
            margin-bottom: 20px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .reviews-title {
            text-align: center;
            font-size: 1.4rem;
            font-weight: 600;
            color: #fbbf24;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
        }

        .reviews-title i {
            margin-right: 8px;
        }

        .rating-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #000;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: 0 2px 10px rgba(255,215,0,0.3);
        }

        .reviews-list {
            display: flex;
            flex-direction: column;
            height: 460px;
            overflow: hidden;
            margin-bottom: 15px;
            border-radius: 12px;
            position: relative;
        }

        /* Review scrollbar styles removed - no longer needed */

        .review-item {
            display: flex;
            align-items: flex-start;
            background: rgba(0,0,0,0.25);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 10px;
            animation: slideInLeft 0.5s ease;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .review-item:hover {
            background: rgba(255,255,255,0.05);
            transform: translateX(5px);
        }

        .review-item.fade-out {
            animation: fadeOutSlide 0.5s ease forwards;
        }

        .review-avatar {
            width: 45px;
            height: 45px;
            background: linear-gradient(45deg, #fbbf24, #f59e0b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            border: 2px solid rgba(255,255,255,0.2);
        }

        .review-content {
            flex: 1;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .review-name {
            color: #FFF;
            font-size: 1rem;
            font-weight: 600;
        }

        .review-rating {
            display: flex;
            gap: 2px;
        }

        .review-rating .star {
            color: #FFD700;
            font-size: 0.8rem;
        }

        .review-rating .star.empty {
            color: rgba(255,255,255,0.3);
        }

        .review-text {
            color: #E0E0E0;
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 5px;
        }

        .review-time {
            color: rgba(255,255,255,0.5);
            font-size: 0.75rem;
        }

        /* Add Review Form Styles */
        .add-review-section {
            background: rgba(0,0,0,0.25);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .add-review-title {
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: #fbbf24;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .add-review-title i {
            margin-right: 5px;
        }

        .review-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .review-input {
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            padding: 10px 12px;
            color: #fff;
            font-family: 'Kanit', sans-serif;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .review-input:focus {
            outline: none;
            border-color: #fbbf24;
            background: rgba(0,0,0,0.4);
            box-shadow: 0 0 10px rgba(251,191,36,0.3);
        }

        .review-input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .review-textarea {
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            padding: 10px 12px;
            color: #fff;
            font-family: 'Kanit', sans-serif;
            font-size: 0.9rem;
            min-height: 80px;
            resize: vertical;
            transition: all 0.3s ease;
        }

        .review-textarea:focus {
            outline: none;
            border-color: #fbbf24;
            background: rgba(0,0,0,0.4);
            box-shadow: 0 0 10px rgba(251,191,36,0.3);
        }

        .review-textarea::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .rating-input {
            display: flex;
            gap: 8px;
            justify-content: center;
            padding: 10px 0;
        }

        .rating-star {
            font-size: 1.5rem;
            color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .rating-star:hover {
            color: #FFD700;
            transform: scale(1.1);
        }

        .rating-star.active {
            color: #FFD700;
            animation: starPulse 0.3s ease;
        }

        .submit-review-btn {
            background: linear-gradient(45deg, #fbbf24, #f59e0b);
            color: #000;
            border: none;
            border-radius: 8px;
            padding: 12px 20px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .submit-review-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(251,191,36,0.4);
        }

        .submit-review-btn:active {
            transform: translateY(0);
        }

        .submit-review-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        @keyframes starPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Heavy Break Games Section Styles */
        .games-container {
            background: rgba(0,0,0,0.4);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(251,191,36,0.2);
            margin-bottom: 20px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .games-title {
            text-align: center;
            font-size: 1.6rem;
            font-weight: 600;
            color: #fbbf24;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
        }

        .games-title i {
            margin-right: 8px;
            color: #ff6b35;
        }

        .win-rate-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            background: linear-gradient(45deg, #ff6b35, #ff9558);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: 0 2px 10px rgba(255,107,53,0.4);
            animation: pulse 2s infinite;
        }

        .win-rate-badge i {
            color: #fff;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .game-card {
            background: rgba(0,0,0,0.3);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            cursor: pointer;
        }

        .game-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(251,191,36,0.4);
            border-color: rgba(251,191,36,0.5);
        }

        .game-card.big-win {
            animation: bigWinPulse 1s ease;
            border-color: #FFD700;
            box-shadow: 0 0 30px rgba(255,215,0,0.6);
        }

        .game-image-container {
            position: relative;
            width: 100%;
            height: 150px;
            overflow: hidden;
            background: rgba(0,0,0,0.2);
        }

        .game-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            transition: transform 0.3s ease;
        }

        .game-card:hover .game-image {
            transform: scale(1.1);
        }

        .win-rate-overlay {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(16, 207, 11, 0.9);
            color: white;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255,255,255,0.3);
            animation: glow 2s ease-in-out infinite;
        }

        .big-win-indicator {
            position: absolute;
            top: 10px;
            left: 10px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #000;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255,255,255,0.5);
            animation: bigWinFlash 0.5s ease infinite alternate;
            display: none;
        }

        .game-card.big-win .big-win-indicator {
            display: block;
        }

        .game-info {
            padding: 15px;
        }

        .game-name {
            color: #FFF;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            text-align: center;
        }

        .game-progress-container {
            margin-bottom: 10px;
        }

        .game-progress-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
        }

        .progress-text {
            color: #E0E0E0;
            font-size: 0.8rem;
        }

        .progress-percentage {
            color: #fbbf24;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255,255,255,0.1);
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            border-radius: 3px;
            transition: width 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .progress-fill::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: progressShine 2s linear infinite;
        }

        .game-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .game-stat {
            text-align: center;
        }

        .stat-value-small {
            color: #10cf0b;
            font-size: 0.9rem;
            font-weight: 600;
            display: block;
        }

        .stat-label-small {
            color: #E0E0E0;
            font-size: 0.7rem;
        }

        .games-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        @keyframes bigWinPulse {
            0%, 100% { transform: scale(1); }
            25% { transform: scale(1.05); }
            50% { transform: scale(1.02); }
            75% { transform: scale(1.05); }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 5px rgba(16, 207, 11, 0.5); }
            50% { box-shadow: 0 0 15px rgba(16, 207, 11, 0.8); }
        }

        @keyframes bigWinFlash {
            0% { opacity: 0.8; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.1); }
        }

        @keyframes progressShine {
            to { left: 100%; }
        }

        /* Mobile Game Card Animation */
        .game-card.winner-animation {
            animation: winnerCelebration 2s ease;
        }

        @keyframes winnerCelebration {
            0% { transform: scale(1) rotate(0deg); }
            25% { transform: scale(1.1) rotate(2deg); }
            50% { transform: scale(1.05) rotate(-2deg); }
            75% { transform: scale(1.08) rotate(1deg); }
            100% { transform: scale(1) rotate(0deg); }
        }

        /* Header Mobile Responsive */
        @media (max-width: 480px) {
            .header-container {
                padding: 10px 15px;
            }

            .logo img {
                height: 30px;
            }

            .header-nav {
                gap: 10px;
            }

            .btn-login,
            .btn-register {
                padding: 6px 15px;
                font-size: 0.8rem;
            }
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            body { padding: 85px 10px 10px 10px; /* Maintain top padding for header */ }
            .top-banner { margin-bottom: 15px; border-radius: 15px; }
            .top-banner img { border-radius: 15px; }
            .bottom-banner { margin-bottom: 15px; border-radius: 15px; }
            .bottom-banner img { border-radius: 15px; }
            .register-gif-container { margin-bottom: 15px; border-radius: 15px; }
            .register-gif-container img { border-radius: 15px; }
            .stat-box { padding: 8px; }
            .stat-icon { font-size: 1rem; margin-bottom: 3px; }
            .stat-value { font-size: 0.9rem; }
            .stat-label { font-size: 0.7rem; }
            .jackpot-container { padding: 15px; }
            .jackpot-title { font-size: 1.4rem; }
            .jackpot-amount { padding: 15px; margin-bottom: 12px; }
            .amount-value { font-size: 1.8rem; }
            .info-item { padding: 12px; }
            .info-label { font-size: 0.8rem; }
            .info-value { font-size: 1rem; }
            .coin { width: 28px; height: 28px; font-size: 12px; }
            .site-title { font-size: 2rem; }
            .btn-row {
                gap: 15px;
                padding: 0px 0px;
            }
            .btn-gold {
                padding: 8px 15px;
            }
            .btn-icon {
                width: 32px;
                height: 32px;
                margin-right: 10px;
            }
            .btn-icon-inner {
                width: 24px;
                height: 24px;
            }
            .btn-icon-inner i {
                font-size: 14px;
            }
            .btn-label {
                font-size: 16px;
            }
            .deposits-container { padding: 15px; }
            .deposits-title { font-size: 1.2rem; }
            .deposits-list { max-height: 300px; }
            .deposit-item { padding: 10px 12px; }
            .deposit-avatar { width: 35px; height: 35px; margin-right: 10px; }
            .bank-avatar-icon { width: 24px; height: 24px; }
            .deposit-name { font-size: 0.9rem; }
            .deposit-account { font-size: 0.75rem; padding: 1px 4px; }
            .deposit-time { font-size: 0.7rem; }
            .deposit-value { font-size: 1rem; }
            .deposit-method { font-size: 0.6rem; padding: 1px 4px; }
            .stat-item { padding: 10px; gap: 8px; }
            .stat-item i { font-size: 1rem; }
            .stat-label { font-size: 0.7rem; }
            .stat-value { font-size: 0.9rem; }
            .reviews-container { padding: 15px; }
            .reviews-title { font-size: 1.2rem; }
            .reviews-list { max-height: 300px; }
            .review-item { padding: 12px; }
            .review-avatar { width: 40px; height: 40px; margin-right: 10px; font-size: 1rem; }
            .review-name { font-size: 0.9rem; }
            .review-text { font-size: 0.8rem; }
            .review-time { font-size: 0.7rem; }
            .rating-badge { font-size: 0.8rem; padding: 3px 10px; }
            .add-review-section { padding: 12px; }
            .add-review-title { font-size: 1rem; }
            .review-input { padding: 8px 10px; font-size: 0.8rem; }
            .review-textarea { padding: 8px 10px; font-size: 0.8rem; min-height: 60px; }
            .rating-star { font-size: 1.2rem; }
            .submit-review-btn { padding: 10px 15px; font-size: 0.9rem; }
            .buttons-container { gap: 10px; }
            .btn {
                font-size: 0.9rem;
                padding: 18px 20px;
                letter-spacing: 0.5px;
            }
            .games-container { padding: 15px; }
            .games-title { font-size: 1.3rem; }
            .games-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .game-image-container { height: 120px; }
            .game-name { font-size: 0.9rem; }
            .progress-text { font-size: 0.7rem; }
            .progress-percentage { font-size: 0.7rem; }
            .stat-value-small { font-size: 0.8rem; }
            .stat-label-small { font-size: 0.6rem; }
        }

        /* Footer */
        .footer {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            background: rgba(0,0,0,0.3);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .footer-text {
            color: #E0E0E0;
            font-size: 0.9rem;
        }

/* Accessibility Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #fbbf24;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

/* Focus Styles for Better Accessibility */
*:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .main-container {
        background: #000;
        color: #fff;
    }

    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }

    .btn-secondary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
}

/* Layout Fixes */
.main-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Image overflow fixes */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container spacing fixes */
.register-section,
.register-gif-section,
.jackpot-section,
.cta-buttons,
.deposits-section,
.trust-banner,
.games-section,
.reviews-section {
    margin-bottom: 20px;
}

/* Prevent content overflow */
.jackpot-info,
.deposits-list,
.reviews-list,
.games-grid {
    overflow: hidden;
}

/* Fix button container spacing */
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

/* Ensure proper spacing in mobile */
@media (max-width: 480px) {
    .register-section,
    .register-gif-section,
    .jackpot-section,
    .cta-buttons,
    .deposits-section,
    .trust-banner,
    .games-section,
    .reviews-section {
        margin-bottom: 15px;
    }
}

/* Casino Providers Slider Styles */
.casino-providers-section {
    margin-bottom: 20px;
}

.providers-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.providers-title i {
    margin-right: 8px;
    color: #fbbf24;
}

.swiper.providersSwiper {
    padding: 20px 0;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.provider-item {
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.provider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251,191,36,0.3);
    border-color: #fbbf24;
}

.provider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1) contrast(1);
    transition: all 0.3s ease;
}

.provider-item:hover img {
    filter: brightness(1.2) contrast(1.1);
}

/* Ribbon Styles */
.ribbon-ribbon {
    position: absolute;
    top: 10px;
    left: -30px;
    background: linear-gradient(45deg, #ff3b3b, #ff6b6b);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transform: rotate(-45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 10;
    font-family: 'Kanit', sans-serif;
    letter-spacing: 1px;
    animation: ribbon-shine 2s infinite;
}

@keyframes ribbon-shine {
    0%, 100% {
        background: linear-gradient(45deg, #ff3b3b, #ff6b6b);
    }
    50% {
        background: linear-gradient(45deg, #ff6b6b, #ff9999);
    }
}

/* Swiper Navigation & Pagination */
.swiper.providersSwiper .swiper-button-next,
.swiper.providersSwiper .swiper-button-prev {
    color: #fbbf24;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(251,191,36,0.3);
}

.swiper.providersSwiper .swiper-button-next::after,
.swiper.providersSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper.providersSwiper .swiper-pagination {
    bottom: 0;
}

.swiper.providersSwiper .swiper-pagination-bullet {
    background: #fbbf24;
    opacity: 0.5;
}

.swiper.providersSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Mobile Responsive for Casino Slider */
@media (max-width: 480px) {
    .providers-title {
        font-size: 1.2rem;
    }

    .swiper.providersSwiper {
        padding: 15px 0;
    }

    .provider-item {
        padding: 10px;
    }

    /* Hero Section Mobile Responsive */
    .hero-content h1 {
        font-size: 19px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 14px;
        margin-top: 15px;
    }

    .hero-logo {
        max-width: 250px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}