/* font */

@font-face {
  font-family: "NeoSansProBold";
  src: url("../fonts/NeoSansProBold.OTF");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "NeoSansProMedium";
  src: url("../fonts/NeoSansProMedium.OTF");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "NeoSansProRegular";
  src: url("../fonts/NeoSansProRegular.OTF");
  font-weight: normal;
  font-style: normal;
}

        :root {
            --primary-color: #FF6B35; /* Vibrant Orange */
            --secondary-color: #2D3748; /* Dark Slate */
            --accent-color: #F7931E; /* Golden Orange */
            --success-color: #10B981; /* Emerald Green */
            --warning-color: #F59E0B; /* Amber */
            --light-bg: #FAFAFA; /* Off White */
            --card-bg: #FFFFFF; /* Pure White */
            --dark-bg: #1A202C; /* Deep Dark */
            --text-primary: #1A202C; /* Dark Text */
            --text-secondary: #4A5568; /* Gray Text */
            --text-light: #718096; /* Light Gray */
            --border-color: #E2E8F0; /* Light Border */
            --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            --gradient-dark: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
            --border-radius: 12px;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
/* Header */
header {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 15px 0; */
}


.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

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

.header-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--card-bg);
    flex-direction: column;
    width: 220px;
    gap: 20px;
    padding: 20px;
    display: none;
    box-shadow: var(--shadow-md);
    border-radius: 10px 0 0 10px;
  }

  .nav-menu.active {
    display: flex;
  }



  .mobile-toggle {
    display: flex;
  }

  /* Animate toggle (hamburger to X) */
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
  .header-cta {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .logo img{
    height: 3.3rem;
  }
  .hero p {
    font-size: 1rem !important;
  }

}

        /* Hero Section */
        .hero {
            background: var(--gradient-dark);
            color: white;
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            text-align: center;
            margin: 0 auto;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero-highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 40px;
          
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-primary);
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
        }

        /* Stats Section */
        .stats {
            background: var(--card-bg);
            margin-top: -40px;
            position: relative;
            z-index: 3;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            margin-left: 20px;
            margin-right: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0;
        }

        .stat-item {
            text-align: center;
            padding: 40px 20px;
            border-right: 1px solid var(--border-color);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }

        .stat-label {
            color: var(--text-secondary);
            font-weight: 500;
            margin-top: 8px;
        }

        /* Featured Casinos */
        .featured-casinos {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .casino-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .casino-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .casino-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .casino-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

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

        .casino-logo {
            width: 80px;
            height: 50px;
            background: var(--light-bg);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .casino-rating {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .stars {
            color: var(--warning-color);
            font-size: 1.2rem;
        }

        .rating-number {
            font-weight: 600;
            color: var(--text-primary);
        }

        .casino-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .casino-bonus {
            background: linear-gradient(135deg, var(--success-color), #059669);
            color: white;
            padding: 12px 16px;
            border-radius: 8px;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
        }

        .casino-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .casino-features li {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        .casino-features li::before {
            content: '✓';
            color: var(--success-color);
            font-weight: bold;
            margin-right: 12px;
            width: 16px;
        }

        .casino-actions {
            display: flex;
            gap: 12px;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            flex: 1;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border-color);
        }

        .btn-outline:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        /* Why Choose Section */
        .why-choose {
            background: var(--card-bg);
            padding: 100px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .feature-card {
            text-align: center;
            padding: 30px 20px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2rem;
            color: white;
            box-shadow: var(--shadow-md);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 40px;
            padding: 30px;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--primary-color);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .benefit-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .benefit-content p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* CTA Banner */
        .cta-banner {
            background: var(--gradient-primary);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="cta-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-pattern)"/></svg>');
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-banner h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-banner p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button-large {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: white;
            color: var(--primary-color);
            padding: 20px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

        .cta-button-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
           grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .responsible-gambling {
            margin-bottom: 20px;
        }

        .responsible-gambling p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
        }

        .gambling-logos {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .gambling-logo {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
        }
        .gambling-logo img{
            height: 30px;
        }
        .gambling-logo-18{
            height: 50px;
            width: 50px;
            border-radius: 50%;
            background-color:var(--primary-color);
            color: var(--card-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 600;
        }

        .copyright {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .copyright a{
          text-decoration: none;
          color: var(--accent-color);
        }

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

            .mobile-toggle {
                display: flex;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-item {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
                padding: 30px 15px;
            }

            .stat-item:nth-child(even) {
                border-right: 1px solid var(--border-color);
            }

            .stat-item:nth-last-child(-n+2) {
                border-bottom: none;
            }

            .casino-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .benefit-item {
                flex-direction: column;
                text-align: center;
            }

            .benefit-icon {
                align-self: center;
            }

            .casino-actions {
                flex-direction: column;
            }

            .gambling-logos {
                flex-direction: column;
                align-items: center;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
      
           .featured-casinos {
            padding: 50px 0;
           }
           .why-choose {
            padding: 50px 0;
           }
           .benefits {
            padding: 50px 0;
           }
           .cta-banner {
            padding: 50px 0;
           }

        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .stats {
                margin-left: 15px;
                margin-right: 15px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-item {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
            }

            .stat-item:last-child {
                border-bottom: none;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }




/* policy pages */

.privacy-main {
  background-color:var(--border-color);
  padding-top: 100px;
  padding-bottom: 60px;
}

.privacy-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.privacy-content h1 {
  font-size: 2.8em;
  color: #1d3557;
  margin-bottom: 20px;
  /* text-align: center; */
}

.privacy-content h2 {
  font-size: 1.8em;
  color: #e63946;

  margin-bottom: 15px;
  border-bottom: 2px solid #f1faee;
  padding-bottom: 10px;
}
.privacy-content h3 {
  font-size: 1.4rem;
}

.privacy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .privacy-content h1 {
    font-size: 2.2em;
  }

  .privacy-content h2 {
    font-size: 1.5em;
  }
}

/* Age Verification Modal */
/* Age Verification Modal */
        .age-verification {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .age-overlay {
            background: rgba(26, 32, 44, 0.95);
            backdrop-filter: blur(10px);
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .age-modal {
            position: relative;
            background: var(--card-bg);
            max-width: 500px;
            width: 100%;
            border-radius: 20px;
            padding: 0;
            text-align: center;
            animation: modalEnter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
            overflow: hidden;
            margin: auto 0;
        }

        .age-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            margin: auto 0;
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--card-bg);
        }

        .warning-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            color: var(--card-bg);
            font-size: 20px;
            font-weight: 700;
        }

        .age-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .age-content {
            padding: 40px 30px 30px;
        }

        .age-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .age-text {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .age-warning {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: 10px;
            padding: 12px 16px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--warning-color);
        }

        .warning-badge {
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .age-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .btn-age {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-age::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-age:hover::before {
            left: 100%;
        }

        .btn-age.confirm {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-age.confirm:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }

        .btn-age.decline {
            background: transparent;
            border: 2px solid var(--border-color);
            color: var(--text-secondary);
        }

        .btn-age.decline:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: rgba(255, 107, 53, 0.05);
        }

        .btn-icon {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .age-footer {
            font-size: 0.85rem;
            color: var(--text-light);
            opacity: 0.8;
        }

        /* Modal Animations */
        @keyframes modalEnter {
            from {
                transform: translateY(-50px) scale(0.9);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        @keyframes modalExit {
            from {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
            to {
                transform: translateY(-50px) scale(0.9);
                opacity: 0;
            }
        }

        /* Responsive Design for Age Modal */
        @media (max-width: 768px) {
            .age-modal {
                max-width: 90%;
                margin: 20px;
            }

            .age-content {
                padding: 30px 20px 25px;
            }

            .age-title {
                font-size: 1.5rem;
            }

            .age-text {
                font-size: 0.95rem;
            }

            .age-icon {
                width: 60px;
                height: 60px;
               
            }

            .age-number {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .age-buttons {
                gap: 10px;
            }

            .btn-age {
                padding: 14px 20px;
                font-size: 0.95rem;
            }

            .age-warning {
                padding: 10px 12px;
                font-size: 0.85rem;
            }
        }

/* table */

.table__items .table__item {
  display: flex;
  justify-content: space-between;
  background-color: #f8f9fa;
  border-radius: 10px;
  width: 100%;
  padding: 10px 40px 10px 10px;
  margin-bottom: 20px;
  height: 160px;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 18%);
  font-family: "NeoSansProRegular";

}

.table__items .table__item:last-child {
  margin-bottom: 0;
}

.table__items .item__logo {
  display: flex;
  flex-direction: column;
}

.table__items .item__logo .logo {
  display: flex;
  margin: auto 0;
}

.table__items .item__logo h3 {
  font-size: 16px;
  color: #000;
  text-align: center;
}

.table__items .item__offers {
  display: flex;
  flex-direction: column;
  max-width: 250px;
  width: 100%;
}

.table__items .item__offer {
  display: flex;
  flex-direction: column;
}

.table__items .item__offers .reputation {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #44c940;
  font-family: "NeoSansProMedium";
  margin: 10px 0;
}

.table__items .item__offers .reputation img {
  margin: 0 0 -2px 10px;
}

.table__items .item__offers .casino__info li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #525252;
  font-family: "NeoSansProMedium";
}

.table__items .item__offers .casino__info li > img {
  margin-right: 5px;
  margin-top: -2px;
}

.table__items .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 15px;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
  background-color: #cc0012;
  border-radius: 3px;
  font-family: "NeoSansProBold";
}

.table__items .item__logo .badge {
  display: none !important;
}

.table__items .badge.none {
  background-color: transparent;
}

.table__items .item__info {
  margin: auto 0;
  max-width: 225px;
  width: 100%;
}

.table__items .item__info p {
  font-size: 14px;
  color: #cc0012;
  text-align: center;
  margin-bottom: 10px;
  font-family: "NeoSansProBold";
}

.table__items .item__info h4 {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  text-align: center;
  font-family: "NeoSansProBold";
}

.table__items .item__action {
  width: 100%;
  max-width: 280px;
  margin: auto 0;
}

.table__items .item__action .casino__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 100%;
  border-radius: 30px;
  background-color: #ffde00;
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-top: 2px;
  text-decoration: none;
  font-family: "NeoSansProBold";
}

.table__items .item__action .casino__payments {
  display: block;
  position: relative;
  width: 250px;
  height: max-content;
  overflow: hidden;
  margin: 0 auto;
}

.table__items .item__action .casino__payments .items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table__items .item__action .casino__payments img {
  margin: 0 5px;
}
.items img {
  height: 35px;
}
.casino__info img {
  height: 9px;
}
.reputation img {
  height: 8px;
}

/* table responsive */

@media screen and (min-width: 1024px) and (max-width: 1140px) {
  .slick__offers .slide .casino__payments,
  .table__items .item__action .casino__payments {
    width: 200px;
  }

  .table__items .item__logo .badge {
    display: none !important;
  }

  .table__items .item__logo .logo img {
    width: 200px;
  }

  .table__items .item__action {
    max-width: 234px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .table__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .table__items .table__item {
    flex-direction: column;
    margin: 0;
    height: auto;
    padding: 10px;
    align-items: center;
  }

  .table__items .badge {
    margin: 10px auto 0;
  }

  .table__items .item__logo .badge {
    display: flex !important;
  }

  .table__items .item__logo .badge.none {
    margin: 0;
  }

  .table__items .item__offers .badge.none {
    height: 0;
    margin: 0;
  }

  .table__items .item__info {
    margin: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .table__items .table__item {
    flex-direction: column;
    align-items: center;
    height: max-content;
    padding: 20px;
    margin-bottom: 5px;
  }

  .table__casinos thead tr th:nth-child(2),
  .table__casinos thead tr th:nth-child(4) {
    display: none;
  }

  .table__casinos tbody tr td:nth-child(2),
  .table__casinos tbody tr td:nth-child(4) {
    display: none;
  }

  .table__items .badge {
    margin: 10px auto 0;
  }

  .table__items .item__offers {
    display: none;
  }

  .table__items .item__logo .badge {
    display: flex !important;
  }

  .table__items .item__info {
    margin: auto 0 15px;
  }

  .table__items .item__action .casino__payments {
    width: 230px;
  }
}

@media screen and (max-width: 320px) {
  .table__items .item__action .casino__link {
    height: 50px;
  }

  .table__casinos tbody tr td:first-child img {
    height: 45px;
  }
}
.age-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}


/* age restriction page */


        .age-restriction {
        
            background-color: var(--dark-bg);
            color: #f1faee;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            text-align: center;
        }

        .age-container {
            max-width: 600px;
            padding: 40px;
           
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

       .age-container h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5em;
            color: var(--card-bg);
            margin-bottom: 20px;
        }

       .age-container p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .warning-box {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid #e63946;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .warning-box p {
            margin: 0;
            font-size: 1em;
            color: #f1faee;
        }




     


    
