/* ============================================
   MODERN CASINO REVIEW SITE - REDESIGN 2025
   ============================================ */


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

@font-face {
    font-family: 'Teachers';
    src: url('../font/Teachers-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
  
:root {
    /* Coastal Teal Palette */
    --primary-dark: #071c1f;
    --secondary-dark: #0c2a2e;
    --tertiary-dark: #123a40;
    --accent-purple: #ff7a59;
    --accent-blue: #2ec4b6;
    --accent-cyan: #9ef6d0;
    --accent-gold: #f7c948;
    --accent-pink: #ffb869;
    --text-primary: #f8fbff;
    --text-secondary: #c2d7db;
    --text-muted: #8aa3a8;
    --border-color: rgba(233, 245, 247, 0.12);
    --glass-bg: rgba(10, 40, 42, 0.55);
    --glass-border: rgba(158, 246, 208, 0.18);
    --shadow-sm: 0 2px 8px rgba(7, 31, 32, 0.25);
    --shadow-md: 0 6px 18px rgba(7, 31, 32, 0.35);
    --shadow-lg: 0 14px 38px rgba(7, 31, 32, 0.45);
    --shadow-xl: 0 22px 64px rgba(4, 20, 21, 0.55);
    --gradient-primary: linear-gradient(135deg, #2ec4b6 0%, #cbf3f0 100%);
    --gradient-secondary: linear-gradient(135deg, #ff9f1c 0%, #ffbf69 100%);
    --gradient-accent: linear-gradient(135deg, #3a86ff 0%, #8338ec 100%);
    --gradient-gold: linear-gradient(135deg, #f7c948 0%, #ff9f1c 100%);
}

html {
    scroll-behavior: smooth;
  }
  
body {
    font-family: 'Teachers', sans-serif;
    background: var(--primary-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(46, 196, 182, 0.18) 0px, transparent 55%),
        radial-gradient(at 100% 100%, rgba(255, 159, 28, 0.18) 0px, transparent 55%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 186, 105, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(46, 196, 182, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER - Modern Glassmorphism
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 21, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(46, 196, 182, 0.35));
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
    opacity: 0.2;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    left: 0;
}

.nav-link.active {
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.btn-18 {
    background: var(--gradient-gold);
    color: #082027;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-18:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO SECTION - Modern Gradient Hero
   ============================================ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(46, 196, 182, 0.18) 0%, rgba(255, 159, 28, 0.18) 100%),
        url('images/photo1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 28, 31, 0.88) 0%,
        rgba(12, 42, 46, 0.78) 50%,
        rgba(7, 28, 31, 0.88) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f7c948 50%, #2ec4b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
    filter: drop-shadow(0 4px 20px rgba(46, 196, 182, 0.3));
}

.hero-title span {
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero-stats {
    margin-top: 48px;
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-block {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    min-width: 140px;
    height: 120px;
}

.stat-block-bg {
    position: absolute;
    border-radius: 12px;
    height: 80px;
}

.stat-bg-gold {
    background: #fbbf24;
    width: 100px;
    left: -20px;
    z-index: 1;
}

.stat-bg-purple {
    background: #8b5cf6;
    width: 120px;
    right: -20px;
    z-index: 2;
}

.stat-bg-purple-full {
    background: #8b5cf6;
    width: 160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.stat-bg-blue {
    background: #3b82f6;
    width: 100px;
    left: -20px;
    z-index: 1;
}

.stat-bg-cyan {
    background: #06b6d4;
    width: 120px;
    right: -20px;
    z-index: 2;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    position: relative;
    z-index: 10;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

.stat-gold {
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-purple {
    background: linear-gradient(135deg, #ffffff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-blue {
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* ============================================
   BADGES - Modern Pill Design
   ============================================ */

.info-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.badge-icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.badge-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.badge-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.badge-text {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   SECTION TITLES - Modern Typography
   ============================================ */

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -1px;
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    margin: 32px auto 48px;
    text-align: center;
    font-weight: 400;
    max-width: 800px;
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 100px 0;
    position: relative;
}

.intro-text {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    font-weight: 400;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.info-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
}

.info-box:hover::before {
    transform: scaleX(1);
}

.info-box-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.info-box-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CASINO CARDS - Modern Card Design
   ============================================ */

.casino-reviews {
    padding: 100px 0;
    position: relative;
}

.casino-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.casino-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.casino-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
}

.casino-card:hover::before {
    transform: scaleX(1);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

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

.casino-image {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
    margin-top: 16px;
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-lg);
}

.casino-card:hover .casino-image {
    transform: scale(1.05);
}

.casino-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -1px;
}

.rating {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
}

.rating-number {
    font-size: 52px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.rating-separator {
    font-size: 32px;
    color: var(--text-secondary);
    font-weight: 600;
    opacity: 0.6;
}

.rating-total {
    font-size: 32px;
    color: var(--text-secondary);
    font-weight: 600;
}

.rating-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.star {
    color: var(--accent-gold);
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.review-count {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.bonus-offer {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
}

.btn-bonus {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn-bonus::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-bonus:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-bonus.blue {
    background: var(--gradient-primary);
}

.btn-bonus a {
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
}

/* ============================================
   DETAILED INFO SECTION
   ============================================ */

.detailed-info {
    padding: 100px 0;
    position: relative;
}

.info-section {
    margin-bottom: 48px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.info-section:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.info-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-left: 48px;
}

.info-section-title::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.35);
}

.info-section-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.gaming-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.gaming-list li {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    line-height: 1.8;
}

.gaming-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-size: 20px;
    font-weight: bold;
}

.gaming-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   ABOUT PAGE - Platform Purpose Section
   ============================================ */

.platform-purpose {
    background-color: var(--primary-dark);
    padding: 100px 0;
    position: relative;
}

.purpose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.purpose-image {
    width: 100%;
}

.purpose-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    max-width: 100%;
    box-shadow: var(--shadow-lg);
}

.purpose-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.purpose-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 0;
}

.purpose-paragraph {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   ABOUT PAGE - Assessment Methodology Section
   ============================================ */

.assessment-methodology {
    background-color: var(--primary-dark);
    padding: 100px 0;
    position: relative;
}

.methodology-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    font-weight: 400;
}

.methodology-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.methodology-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.methodology-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
    flex-shrink: 0;
}

.methodology-content {
    flex: 1;
}

.methodology-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.methodology-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.methodology-item .gaming-list {
    margin-top: 12px;
    margin-bottom: 0;
}

.methodology-item .gaming-list li {
    font-size: 15px;
    margin-bottom: 8px;
}

/* ============================================
   ABOUT PAGE - Information Standards Section
   ============================================ */

.information-standards {
    background-color: var(--primary-dark);
    padding: 100px 0;
    position: relative;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.standard-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.standard-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
}

.standard-card:hover::before {
    transform: scaleX(1);
}

.standard-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.standard-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.standard-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CONTACT PAGE - Contact Section
   ============================================ */

.contact-section {
    background-color: var(--primary-dark);
    padding: 100px 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-content-single {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.contact-icon {
    font-size: 36px;
    flex-shrink: 0;
    line-height: 1;
}

.contact-item-content {
    flex: 1;
}

.contact-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.contact-item-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.important-notice {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--accent-gold);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

.notice-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.notice-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.notice-text:last-child {
    margin-bottom: 0;
}

.notice-link {
    color: var(--accent-purple);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.notice-link:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.required {
    color: #ef4444;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 10, 21, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(7, 28, 31, 0.82);
    box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.16);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.form-link {
    color: var(--accent-purple);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.form-link:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

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

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

/* ============================================
   FOOTER - Modern Footer Design
   ============================================ */

.footer {
    background: var(--secondary-dark);
    padding: 80px 0 32px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(46, 196, 182, 0.35));
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.ukgc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.ukgc-link:hover {
    background: var(--glass-bg);
    transform: translateX(4px);
}

.check-icon {
    color: var(--accent-blue);
    font-weight: bold;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

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

.footer-list li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
}

.footer-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-18-icon,
.footer-logo-img,
.gamcare-icon {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-logos a:hover img {
    transform: scale(1.1);
}

.copyright,
.disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* ============================================
   PRIVACY & TERMS PAGES - Styling
   ============================================ */

.privacy-header {
    background-color: var(--primary-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    background-image: 
        radial-gradient(at 0% 0%, rgba(46, 196, 182, 0.18) 0px, transparent 55%),
        radial-gradient(at 100% 100%, rgba(255, 159, 28, 0.18) 0px, transparent 55%);
}

.privacy-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #2ec4b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    font-weight: 400;
}

.privacy-content {
    background-color: var(--primary-dark);
    padding: 80px 0;
    position: relative;
}

.privacy-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.privacy-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-left: 48px;
}

.privacy-section-title::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.35);
}

.privacy-section-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-section-text:last-child {
    margin-bottom: 0;
}

.privacy-section-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.privacy-list li {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    line-height: 1.8;
}

.privacy-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-size: 20px;
    font-weight: bold;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Contact Hero Variant */
.contact-hero {
    background-image: 
        linear-gradient(135deg, rgba(46, 196, 182, 0.18) 0%, rgba(255, 159, 28, 0.18) 100%),
        url('images/photo1.webp');
}

/* About Hero Variant */
.about-hero {
    background-image: 
        linear-gradient(135deg, rgba(46, 196, 182, 0.18) 0%, rgba(255, 159, 28, 0.18) 100%),
        url('images/photo1.webp');
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-block {
        min-width: 120px;
        height: 100px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-block-bg {
        height: 70px;
    }
    
    .stat-bg-gold,
    .stat-bg-blue {
        width: 85px;
    }
    
    .stat-bg-purple,
    .stat-bg-cyan {
        width: 100px;
    }
    
    .stat-bg-purple-full {
        width: 140px;
    }
    
    .casino-cards {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav-menu {
        order: 3;
    width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .nav-link {
    font-size: 14px;
        padding: 8px 16px;
}

    .hero {
        min-height: 500px;
    padding: 80px 0;
        background-attachment: scroll;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-block {
        min-width: 100px;
        height: 90px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-block-bg {
        height: 60px;
    }
    
    .stat-bg-gold,
    .stat-bg-blue {
        width: 70px;
    }
    
    .stat-bg-purple,
    .stat-bg-cyan {
        width: 85px;
    }
    
    .stat-bg-purple-full {
        width: 120px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .services-section,
    .casino-reviews,
    .detailed-info {
        padding: 60px 0;
    }
    
    .info-section-title {
    font-size: 24px;
        padding-left: 40px;
    }
    
    .info-section-title::before {
        width: 32px;
        height: 32px;
    font-size: 18px;
    }

    .casino-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-box,
    .info-section {
        padding: 24px;
    }

    .purpose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology-item {
        flex-direction: column;
        gap: 20px;
    }

    .methodology-number {
        min-width: auto;
    }

    .standards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-logos {
    gap: 20px;
    }

    .privacy-header {
        padding: 60px 0;
    }

    .privacy-content {
        padding: 60px 0;
    }

    .privacy-section {
        padding: 24px;
    }

    .privacy-section-title {
        font-size: 24px;
        padding-left: 40px;
    }

    .privacy-section-title::before {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

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

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
    font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .casino-card {
        padding: 24px;
    }

    .info-section {
        padding: 20px;
    }

    .privacy-title {
        font-size: 32px;
    }

    .privacy-subtitle {
        font-size: 16px;
    }

    .privacy-section {
        padding: 20px;
    }

    .privacy-section-title {
        font-size: 22px;
        padding-left: 36px;
    }

    .privacy-section-title::before {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .privacy-section-text {
        font-size: 15px;
    }

    .privacy-list li {
        font-size: 15px;
        padding-left: 28px;
    }
}

/* ============================================
   ANIMATIONS & INTERACTIONS
   ============================================ */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Smooth scroll reveal animations */
@media (prefers-reduced-motion: no-preference) {
    .info-box,
    .casino-card,
    .info-section {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .info-box:nth-child(1) { animation-delay: 0.1s; }
    .info-box:nth-child(2) { animation-delay: 0.2s; }
    .info-box:nth-child(3) { animation-delay: 0.3s; }
    .info-box:nth-child(4) { animation-delay: 0.4s; }
    .info-box:nth-child(5) { animation-delay: 0.5s; }
    .info-box:nth-child(6) { animation-delay: 0.6s; }
    
    .casino-card:nth-child(1) { animation-delay: 0.1s; }
    .casino-card:nth-child(2) { animation-delay: 0.2s; }
    .casino-card:nth-child(3) { animation-delay: 0.3s; }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* Selection Styling */
::selection {
    background: var(--accent-purple);
    color: var(--text-primary);
}

::-moz-selection {
    background: var(--accent-purple);
    color: var(--text-primary);
}
