 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            list-style: none;
            text-decoration: none;
        }

        :root {
            --primary-color: #66D5FE;
            --secondary-color: #000;
            --accent-color: #ff6000;
            --text-color: #333;
            --light-bg: #f5f5f5;
            --card-bg: #ffffff;
            --border-color: #e0e0e0;
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .another-footer {
            background: #000;
        }
        .another-footer .d-flex{
            display: flex;
            justify-content: space-between;
        }
.nav-list{
    display: flex;
    gap: 30px;
    list-style: none;
}
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
       .nav-list li a{
            color: #fff;
            font-weight: 700;
            text-decoration: none;
        }
        .menu-mobile{
            display: none;
            padding: 20px;
            flex-direction: column;
        }
       .menu-mobile .nav-list{
            padding: 20px;
            flex-direction: column;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary-color);
        }

        .logo a {
            color: var(--secondary-color);
            text-decoration: none
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 20px;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--secondary-color);
        }

        .menu-toggle {
            display: none;
            font-size: 20px;
            cursor: pointer;
        }
        .another-footer a{
            color: #66D5FE;
            font-weight: 700;
        }

        /* Banner Styles */
        .banners {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }

        .banner {
            flex: 1;
            background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
            color: var(--primary-color);
            padding: 0;
            text-align: center;
            border-radius: 5px;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .banner img {
            width: 100%;
            cursor: pointer;
        }

        /* Main Title */
        .main-title {
            text-align: center;
            margin: 20px 0 20px;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .main-title h1 {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
    img{
        max-width: 100%;
    }
        .main-title p {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        /* PC Table Styles */
        .table-container {
            background: linear-gradient(145deg, #f9fafc, #eef1f6);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            margin: 20px auto;
            border: 1px solid #e5e9f0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-family: "Roboto", sans-serif;
        }

        thead tr {
            background: #66D5FE;
        }

        th {
            padding: 16px 14px;
            text-align: left;
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        td {
            padding: 18px 16px;
            border-bottom: 1px solid #e6eaf1;
           
            color: #333;
            font-size: 15px;
        }

        .table-container tbody tr:nth-child(odd) {
            background-color: #ffffff;
        }
        .register{
            background: #0F56B2 !important;
            margin-top: 20px;
        }
        .promotion{
            display: grid;
            grid-template-columns:  1fr 1fr 1fr;
            gap: 20px;
            margin: 30px 0;
        }
        .table-container tbody tr:nth-child(even) {
            background-color: #D7F4FF;
        }

        .table-container tbody tr:hover {
            background-color: #f1f6ff;
            box-shadow: 0 3px 12px rgba(0, 102, 255, 0.1);
            transition: all 0.2s ease;
        }

        .table-container tr[style*="background-color: #fff9e6;"] {
            background: linear-gradient(90deg, #fff4d6, #fffbe8) !important;
            border-left: 4px solid #ffb300;
        }

        /* logo */
        .table-container .casino-logo {
            width: 200px;
            height: 90px;
            object-fit: contain;
            border-radius: 10px;
          
        }

        .table-container .stars {
            color: #ffc107;
            font-size: 17px;
            letter-spacing: 2px;
            margin: 4px 0;
        }

        .table-container td b {
            color: #003399;
            font-size: 28px;
        }

        .table-container td strong {
            color: #d60000;
            font-size: 18px;
            font-weight: 700;
        }

        .table-container td em {
            color: #007f2d;
            font-weight: 600;
        }

        .table-container .btn {
            display: inline-block;
            padding: 10px 18px;
            background: #DA1526;
            color: #fff;
      
            font-weight: 700;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 3px 10px rgba(0, 115, 255, 0.3);
            clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
    -webkit-clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
        }

        .table-container .btn:hover {
            background: linear-gradient(90deg, #0056d2, #00a3c7);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 115, 255, 0.4);
        }

        /* Mobile Card Styles */
        .mobile-cards {
            display: none;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .brand-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .brand-header {
            background: var(--primary-color);
            color: var(--secondary-color);
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .brand-logo {
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
        }

        .brand-logo img {
            width: 100%
        }

        .brand-info h2 {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .brand-info p {
            font-size: 14px;
            color: #FFF;
        }

        .brand-content {
            padding: 15px;
        }

        .info-section {
            margin-bottom: 15px;
        }

        .info-section h3 {
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-section h3 i {
            color: var(--secondary-color);
        }

        .info-section p {
            font-size: 14px;
            color: #666;
            margin-left: 28px;
        }

        .promo-section {
            background: #f0f8f0;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
        }

        .promo-section h3 {
            color: #66D5FE;
            font-size: 16px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .promo-list {
            list-style: none;
        }

        .promo-list li {
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .promo-list li:before {
            content: "•";
            color: #66D5FE;
            font-size: 18px;
        }

        .action-section {
            text-align: center;
            margin-top: 20px;
        }

        .mobile-btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--accent-color);
            color: white;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .mobile-btn:hover {
            background: #e67e00;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 140, 0, 0.4);
        }

        /* Recommended Brand */
        .recommended .brand-header {
            background: linear-gradient(90deg, #1a1a1a, #df0000);
        }

        .recommended .promo-section {
            background: #e6f2ff;
        }

        .recommended .promo-section h3 {
            color: #1a5cff;
        }

        .recommended .promo-list li:before {
            color: #1a5cff;
        }

        /* About Section */
        .about-section {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            max-height: 500px;
            overflow-y: auto;
        }

        .about-section h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .about-content {
            display: grid;
            /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
            gap: 20px;
        }

        .about-item {
            padding: 15px;
            border-left: 4px solid var(--secondary-color);
            background: #f9f9f9;
        }

        .about-item h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        /* User Reviews */
        .reviews-section {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .reviews-section h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .review-card {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid var(--accent-color);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .review-author {
            font-weight: bold;
            color: var(--primary-color);
        }

        .review-date {
            color: #666;
            font-size: 14px;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .faq-section h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 15px;
            text-align: left;
            background: #f8f9fa;
            border: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 15px;
            display: none;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            display: block;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 18px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #09a300;
            color: #fff;
            font-size: 14px;
        }

        .footer-bottom a {
            color: #fff;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .banners {
                flex-direction: column;
            }

            .table-container {
                display: none;
            }

            .mobile-cards {
                display: flex;
            }
        }

        .action-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
            padding: 10px 22px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            border: none;
            clip-path: polygon(
      13px 0,
      100% 0,
      100% calc(100% - 13px),
      calc(100% - 13px) 100%,
      0 100%,
      0 13px
    );
    -webkit-clip-path: polygon(
      13px 0,
      100% 0,
      100% calc(100% - 13px),
      calc(100% - 13px) 100%,
      0 100%,
      0 13px
    );
        }

        .promo-btn {
            background-color: #66D5FE;
            color: #fff;
        }

        .promo-btn:hover {
            background-color: #26a744;
            transform: translateY(-2px);
        }

        .login-btn {
            background-color: #ffd633;
            color: #2d2d2d;
        }

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

        @media (max-width: 600px) {
            #menu-main{
                display: none;
            }
              .promotion{
                  grid-template-columns: 1fr;
              }
            .action-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                width: 90%;
            }
        }
