/* ===================================
   CrownPlay Greece - Hellas Styles
   Version: 1.0.0
   =================================== */

/* Root Variables */
:root {
  --gold-primary: #d4a574;
  --gold-dark: #b08d5a;
  --gold-light: #e6b885;
  --green-accent: #00d4aa;
  --green-light: #00e6bb;
  --dark-bg: #0a0908;
  --panel-bg: #1f1c1a;
  --panel-hover: #2a2622;
  --white-text: #ffffff;
  --gray-text: #b8b8b8;
  --muted-text: #6b6866;
  --border-subtle: rgba(165,130,100,.15);
  --shadow-small: 0 2px 8px rgba(0,0,0,.4);
  --shadow-medium: 0 4px 16px rgba(0,0,0,.5);
  --shadow-large: 0 8px 32px rgba(0,0,0,.6);
  --shadow-golden: 0 8px 32px rgba(212,165,116,.25);
  --trans-quick: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --trans-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-bg);
  color: var(--white-text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Background Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 45%, rgba(212,165,116,.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0,212,170,.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Loader */
.hellas-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(212,165,116,.2);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: hellas-spin 1s linear infinite;
}

@keyframes hellas-spin {
  to { transform: rotate(360deg); }
}

.hellas-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Navigation */
.hellas-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(10,9,8,.96);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: all var(--trans-normal);
}

.hellas-navbar.scrolled {
  height: 60px;
  box-shadow: var(--shadow-medium);
}

.nav-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--trans-quick);
}

.brand-logo:hover {
  opacity: 0.8;
}

.brand-logo img {
  height: 38px;
  width: auto;
}

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

.nav-links a {
  color: var(--gray-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color var(--trans-quick);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--trans-normal);
}

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

.nav-buttons {
  display: flex;
  gap: 12px;
}

.nav-buttons-mobile {
  display: none;
}

/* Buttons */
.hellas-btn-golden,
.hellas-btn-outline {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--trans-quick);
}

.hellas-btn-golden {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #000;
  border: none;
  box-shadow: var(--shadow-golden);
}

.hellas-btn-golden:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,165,116,.3);
}

.hellas-btn-outline {
  background: transparent;
  color: var(--white-text);
  border: 1px solid var(--border-subtle);
}

.hellas-btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212,165,116,.05);
}

.large-btn {
  padding: 14px 36px;
  font-size: 15px;
}

.huge-btn {
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 700;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white-text);
  transition: all var(--trans-quick);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* Hero Section */
.hellas-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 20px 60px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-backdrop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,9,8,.6) 60%, var(--dark-bg) 100%);
  z-index: 1;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

.hero-content-main {
  text-align: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212,165,116,.1);
  border: 1px solid var(--gold-primary);
  border-radius: 50px;
  color: var(--gold-primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: hellas-fadeIn 0.6s ease;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: hellas-fadeInUp 0.8s ease;
}

.text-gradient {
  background: linear-gradient(135deg, var(--white-text) 0%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-text);
  margin-bottom: 36px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: hellas-fadeInUp 1s ease;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: hellas-fadeInUp 1.2s ease;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding: 28px;
  background: rgba(31,28,26,.4);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  animation: hellas-fadeInUp 1.4s ease;
}

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

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 4px;
}

.stat-text {
  font-size: 13px;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animations */
@keyframes hellas-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

/* Trust Bar */
.trust-bar-section {
  padding: 30px 20px;
  background: linear-gradient(90deg, rgba(31,28,26,.4) 0%, rgba(42,38,34,.4) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-single {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
  opacity: 0.9;
}

.trust-single span:first-child {
  font-size: 24px;
}

/* Welcome Text Section */
.welcome-text-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(31,28,26,.1) 100%);
}

.section-title-text {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}

.text-content-block {
  max-width: 1000px;
  margin: 0 auto;
}

.text-content-block p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray-text);
  margin-bottom: 24px;
  text-align: justify;
}

.text-content-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 32px 0 16px;
}

.text-content-block h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 32px 0;
}

.info-col {
  padding: 24px;
  background: rgba(31,28,26,.2);
  border-radius: 8px;
  border-left: 3px solid var(--gold-primary);
}

.highlight-text {
  padding: 20px;
  background: rgba(212,165,116,.05);
  border-left: 4px solid var(--gold-primary);
  margin: 24px 0;
  font-size: 17px;
  color: var(--white-text);
}

/* Games Section */
.games-showcase-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(31,28,26,.15) 0%, var(--dark-bg) 100%);
}

.section-intro {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(0,212,170,.1);
  border: 1px solid var(--green-accent);
  border-radius: 50px;
  color: var(--green-accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-main-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}

.games-categories-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cat-tab {
  padding: 10px 20px;
  background: transparent;
  color: var(--gray-text);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--trans-quick);
}

.cat-tab.active,
.cat-tab:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.games-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.game-showcase-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel-bg);
  transition: all var(--trans-normal);
  cursor: pointer;
  aspect-ratio: 3/4;
}

.game-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.game-label-top {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  background: rgba(0,0,0,.8);
  color: var(--white-text);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.game-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.95) 100%);
  transform: translateY(0);
  opacity: 1;
}

.game-info-overlay h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.game-info-overlay p {
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.game-rtp {
  font-size: 11px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 10px;
}

.jackpot-amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-primary);
}

.game-play-btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--green-accent);
  color: #000;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--trans-quick);
}

.game-play-btn:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

/* Detailed Content Section */
.detailed-content-section {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.detailed-content-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 36px;
  text-align: center;
}

.content-text-area {
  max-width: 1000px;
  margin: 0 auto;
}

.content-text-area h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 32px 0 16px;
}

.content-text-area p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray-text);
  margin-bottom: 20px;
  text-align: justify;
}

.feature-list-text {
  padding: 24px;
  background: rgba(31,28,26,.2);
  border-radius: 8px;
  margin: 24px 0;
}

.feature-list-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gold-primary);
}

.feature-list-text ul {
  list-style: none;
  padding: 0;
}

.feature-list-text li {
  padding: 8px 0;
  color: var(--gray-text);
  font-size: 15px;
}

/* Promotions Section */
.promos-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(31,28,26,.2) 0%, var(--dark-bg) 100%);
}

.promo-featured {
  background: linear-gradient(135deg, rgba(212,165,116,.06) 0%, rgba(0,212,170,.06) 100%);
  border: 2px solid var(--gold-primary);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.promo-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,165,116,.08) 0%, transparent 70%);
  animation: hellas-rotate 20s linear infinite;
}

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

.promo-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,212,170,.15);
  border: 1px solid var(--green-accent);
  border-radius: 50px;
  color: var(--green-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.promo-amount {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-primary), var(--green-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.promo-details {
  font-size: 18px;
  color: var(--gray-text);
  margin-bottom: 28px;
}

.deposit-breakdown {
  display: grid;
  gap: 12px;
  margin: 28px auto;
  padding: 20px;
  background: rgba(0,0,0,.3);
  border-radius: 10px;
  max-width: 500px;
}

.deposit-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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

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

.deposit-bonus {
  font-weight: 700;
  color: var(--white-text);
  font-size: 14px;
}

.terms-text {
  font-size: 11px;
  color: var(--muted-text);
  margin-top: 16px;
}

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

.promo-single-card {
  background: var(--panel-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all var(--trans-normal);
}

.promo-single-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-primary);
}

.promo-single-card.vip-card {
  background: linear-gradient(135deg, rgba(212,165,116,.08) 0%, var(--panel-bg) 100%);
}

.promo-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.promo-single-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.promo-single-card p {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.promo-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.promo-timer {
  padding: 6px 12px;
  background: rgba(255,107,53,.15);
  border-radius: 4px;
  color: #ff6b35;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
}

.vip-levels {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.vip-levels span {
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
}

.vip-bronze { background: #cd7f32; color: white; }
.vip-silver { background: #c0c0c0; color: #000; }
.vip-gold { background: var(--gold-primary); color: #000; }
.vip-platinum { background: linear-gradient(135deg, #e5e4e2, #fff); color: #000; }

.promo-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all var(--trans-quick);
}

.promo-link:hover {
  color: var(--gold-light);
}

/* Features Detailed Section */
.features-detailed-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(31,28,26,.1) 100%);
}

.features-detailed-section h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}

.features-text-grid {
  display: grid;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-text-item {
  padding: 28px;
  background: rgba(31,28,26,.15);
  border-radius: 8px;
  border-left: 3px solid var(--gold-primary);
}

.feature-text-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold-primary);
}

.feature-text-item p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 16px;
}

/* Payments Section */
.payments-simple-section {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.payments-simple-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

.payment-text-content {
  max-width: 900px;
  margin: 0 auto;
}

.payment-text-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.payment-methods-list h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 20px;
  color: var(--gold-primary);
}

.payment-grid-simple {
  display: grid;
  gap: 16px;
}

.payment-method-item {
  padding: 16px;
  background: rgba(31,28,26,.2);
  border-radius: 6px;
  font-size: 15px;
  color: var(--gray-text);
}

.payment-method-item strong {
  color: var(--white-text);
}

.payment-highlight {
  padding: 20px;
  background: rgba(212,165,116,.05);
  border-left: 4px solid var(--gold-primary);
  margin: 24px 0;
  font-size: 16px;
  color: var(--white-text);
}

/* Live Casino Section */
.live-dealers-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(31,28,26,.2) 0%, var(--dark-bg) 100%);
}

.live-content-area {
  max-width: 1000px;
  margin: 0 auto;
}

.live-stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 36px 0;
  flex-wrap: wrap;
}

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

.live-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 4px;
}

.live-label {
  font-size: 13px;
  color: var(--muted-text);
  text-transform: uppercase;
}

.live-content-area > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 24px;
  text-align: center;
}

.live-games-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.live-game-item {
  background: var(--panel-bg);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: all var(--trans-normal);
}

.live-game-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.live-game-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold-primary);
}

.live-game-item p {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 16px;
}

.live-join-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--green-accent);
  color: #000;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--trans-quick);
}

.live-join-btn:hover {
  background: var(--green-light);
}

/* Sports Section */
.sports-text-section {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.sports-text-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

.sports-content-block {
  max-width: 900px;
  margin: 0 auto;
}

.sports-content-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 28px 0 16px;
}

.sports-content-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 20px;
  text-align: justify;
}

.sports-features-list {
  padding: 24px;
  background: rgba(31,28,26,.15);
  border-radius: 8px;
  margin: 24px 0;
}

.sports-features-list h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gold-primary);
}

.sports-features-list ul {
  list-style: none;
  padding: 0;
}

.sports-features-list li {
  padding: 8px 0;
  color: var(--gray-text);
  font-size: 15px;
}

.sports-features-list li strong {
  color: var(--white-text);
}

/* VIP Program Section */
.vip-program-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(31,28,26,.15) 0%, var(--dark-bg) 100%);
}

.vip-program-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

.vip-content {
  max-width: 1000px;
  margin: 0 auto;
}

.vip-content > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 28px;
}

.vip-tiers-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.vip-tier-box {
  background: var(--panel-bg);
  border-radius: 8px;
  padding: 24px;
  transition: all var(--trans-normal);
}

.vip-tier-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.vip-tier-box.platinum {
  background: linear-gradient(135deg, rgba(212,165,116,.1) 0%, var(--panel-bg) 100%);
  border: 1px solid var(--gold-primary);
}

.vip-tier-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold-primary);
}

.vip-tier-box ul {
  list-style: none;
  padding: 0;
}

.vip-tier-box li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--gray-text);
}

.vip-cta-text {
  padding: 20px;
  background: rgba(212,165,116,.05);
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  color: var(--white-text);
  margin-top: 24px;
}

/* Mobile Gaming Section */
.mobile-gaming-section {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.mobile-gaming-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

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

.mobile-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.mobile-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 16px;
  color: var(--gold-primary);
}

.mobile-features {
  padding: 20px;
  background: rgba(31,28,26,.15);
  border-radius: 8px;
  margin: 20px 0;
}

.mobile-features p {
  font-size: 15px;
  line-height: 1.8;
}

/* Support Section */
.support-excellence-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(31,28,26,.1) 0%, var(--dark-bg) 100%);
}

.support-excellence-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

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

.support-content > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 24px;
}

.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.support-channel {
  background: var(--panel-bg);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all var(--trans-normal);
}

.support-channel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.support-channel h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold-primary);
}

.support-channel p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
}

.support-quality {
  padding: 20px;
  background: rgba(212,165,116,.05);
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  color: var(--white-text);
  margin-top: 24px;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.responsible-gaming-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

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

.responsible-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.responsible-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 16px;
  color: var(--gold-primary);
}

.responsible-tools {
  list-style: none;
  padding: 0;
}

.responsible-tools li {
  padding: 10px 0;
  color: var(--gray-text);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.responsible-tools li strong {
  color: var(--white-text);
}

/* Tournaments Section */
.tournaments-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(31,28,26,.15) 0%, var(--dark-bg) 100%);
}

.tournaments-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

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

.tournaments-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.tournaments-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 16px;
  color: var(--gold-primary);
}

.tournament-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.tournament-type {
  background: var(--panel-bg);
  border-radius: 8px;
  padding: 20px;
  transition: all var(--trans-normal);
}

.tournament-type:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.tournament-type h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold-primary);
}

.tournament-type p {
  font-size: 13px;
  color: var(--gray-text);
}

/* Technology Section */
.technology-section {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.technology-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

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

.tech-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.tech-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 16px;
  color: var(--gold-primary);
}

.tech-content ul {
  list-style: none;
  padding: 0;
}

.tech-content li {
  padding: 8px 0;
  color: var(--gray-text);
  font-size: 15px;
}

.tech-content li strong {
  color: var(--white-text);
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(31,28,26,.2) 0%, var(--dark-bg) 100%);
}

.final-cta-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

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

.cta-main-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--white-text);
  margin-bottom: 32px;
  text-align: center;
}

/* Winners Ticker - Unique Feature */
.winners-ticker {
  background: linear-gradient(135deg, rgba(212,165,116,.08) 0%, rgba(0,212,170,.08) 100%);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}

.winners-ticker h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  color: var(--gold-primary);
}

.ticker-content {
  display: grid;
  gap: 12px;
}

.winner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(0,0,0,.2);
  border-radius: 6px;
  animation: hellas-pulse 3s ease-in-out infinite;
}

@keyframes hellas-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.winner-name {
  font-weight: 600;
  color: var(--white-text);
}

.winner-amount {
  font-weight: 800;
  color: var(--gold-primary);
  font-size: 18px;
}

.winner-game {
  font-size: 13px;
  color: var(--gray-text);
}

.ticker-note {
  font-size: 11px;
  color: var(--muted-text);
  text-align: center;
  margin-top: 12px;
}

.final-benefits {
  margin: 32px 0;
}

.final-benefits h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  color: var(--gold-primary);
}

.final-benefits ul {
  list-style: none;
  padding: 0;
}

.final-benefits li {
  padding: 8px 0;
  font-size: 16px;
  color: var(--gray-text);
}

.registration-steps {
  margin: 32px 0;
}

.registration-steps h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--gold-primary);
}

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

.step {
  text-align: center;
  position: relative;
}

.step-num {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: var(--gold-primary);
  color: #000;
  border-radius: 50%;
  font-weight: 900;
  line-height: 36px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--gray-text);
}

.cta-buttons-final {
  text-align: center;
  margin: 36px 0;
}

.disclaimer-text {
  font-size: 12px;
  color: var(--muted-text);
  text-align: center;
  line-height: 1.6;
  margin-top: 32px;
}

/* Footer */
.hellas-footer {
  background: var(--panel-bg);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 20px 24px;
  margin-top: 60px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-col h4 {
  color: var(--gold-primary);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

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

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--gray-text);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--trans-quick);
}

.footer-col a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--muted-text);
  font-size: 12px;
}

.footer-badges {
  display: flex;
  gap: 12px;
}

.badge-item {
  padding: 4px 12px;
  background: var(--dark-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--gold-primary);
  font-size: 10px;
  font-weight: 700;
}

.footer-disclaimer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-disclaimer p {
  font-size: 11px;
  color: var(--muted-text);
  line-height: 1.6;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 450px;
  background: var(--panel-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow-large);
  z-index: 2000;
  display: none;
}

.cookie-notice.show {
  display: block;
  animation: hellas-slideUp 0.5s ease;
}

@keyframes hellas-slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-notice p {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 16px;
}

.cookie-notice a {
  color: var(--gold-primary);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 10px;
}

.cookie-accept,
.cookie-decline {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--trans-quick);
}

.cookie-accept {
  background: var(--gold-primary);
  color: #000;
}

.cookie-decline {
  background: transparent;
  color: var(--gray-text);
  border: 1px solid var(--border-subtle);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--dark-bg);
    flex-direction: column;
    padding: 30px;
    transition: left var(--trans-normal);
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-buttons {
    display: none;
  }

  .nav-buttons-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    gap: 12px;
  }

  .nav-buttons-mobile .hellas-btn-golden,
  .nav-buttons-mobile .hellas-btn-outline {
    width: 100%;
  }

  .hellas-hero {
    padding: 80px 16px 40px;
  }

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

  .hero-description {
    font-size: 15px;
  }

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

  .hero-actions .hellas-btn-golden,
  .hero-actions .hellas-btn-outline {
    width: 100%;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .stat-num {
    font-size: 22px;
  }

  .trust-items {
    gap: 20px;
  }

  .trust-single {
    font-size: 12px;
  }

  .trust-single span:first-child {
    font-size: 20px;
  }

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

  .games-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .deposit-breakdown {
    padding: 16px;
  }

  .promo-featured {
    padding: 32px 20px;
  }

  .promo-amount {
    font-size: 28px;
  }

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

  .live-stats-row {
    gap: 24px;
  }

  .live-number {
    font-size: 28px;
  }

  .live-games-showcase {
    grid-template-columns: 1fr;
  }

  .vip-tiers-details {
    grid-template-columns: 1fr;
  }

  .support-channels {
    grid-template-columns: 1fr;
  }

  .tournament-types {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .ticker-content {
    font-size: 14px;
  }

  .winner-amount {
    font-size: 16px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-notice {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    border-radius: 10px 10px 0 0;
  }

  .cookie-btns {
    flex-direction: column;
  }

  .cookie-accept,
  .cookie-decline {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .games-categories-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .section-title-text,
  .section-main-title {
    font-size: 24px;
  }

  .content-text-area p,
  .text-content-block p {
    font-size: 14px;
    text-align: left;
  }

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

/* Print Styles */
@media print {
  .hellas-navbar,
  .cookie-notice,
  .hellas-loader {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

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

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