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

:root {
  --hellas-gold: #d4a574;
  --hellas-gold-dark: #b08d5a;
  --hellas-gold-light: #e6b885;
  --hellas-green: #00d4aa;
  --hellas-green-light: #00e6bb;
  --hellas-dark: #0a0908;
  --hellas-panel: #1f1c1a;
  --hellas-panel-hover: #2a2622;
  --hellas-white: #ffffff;
  --hellas-gray: #b8b8b8;
  --hellas-muted: #6b6866;
  --hellas-border: rgba(165,130,100,.15);
  --hellas-shadow-sm: 0 2px 8px rgba(0,0,0,.4);
  --hellas-shadow-md: 0 4px 16px rgba(0,0,0,.5);
  --hellas-shadow-lg: 0 8px 32px rgba(0,0,0,.6);
  --hellas-trans-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --hellas-trans-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--hellas-dark);
  color: var(--hellas-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

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

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

.hellas-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--hellas-trans-fast);
}

.hellas-logo-link:hover {
  transform: scale(1.03);
}

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

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

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

.hellas-nav-item::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hellas-gold);
  transition: width var(--hellas-trans-base);
}

.hellas-nav-item:hover {
  color: var(--hellas-gold);
}

.hellas-nav-item:hover::after {
  width: 100%;
}

.hellas-nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hellas-btn-main,
.hellas-btn-secondary {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--hellas-trans-fast);
  position: relative;
  overflow: hidden;
}

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

.hellas-btn-secondary:hover {
  background: rgba(255,255,255,.04);
  border-color: var(--hellas-gold);
  color: var(--hellas-gold);
}

.hellas-btn-main {
  background: linear-gradient(135deg, var(--hellas-gold), var(--hellas-gold-dark));
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212,165,116,.2);
}

.hellas-btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,165,116,.3);
}

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

.hellas-btn-lg {
  padding: 12px 32px;
  font-size: 14px;
}

.hellas-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
  background: transparent;
  border: none;
}

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

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

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

.hellas-hero-backdrop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,9,8,.4) 50%, var(--hellas-dark) 100%);
}

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

.hellas-hero-inner {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.hellas-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212,165,116,.08);
  border: 1px solid var(--hellas-gold);
  border-radius: 50px;
  color: var(--hellas-gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.hellas-hero-heading {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--hellas-white) 0%, var(--hellas-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hellas-hero-sub {
  display: block;
  font-size: 0.85em;
  margin-top: 8px;
  opacity: 0.95;
}

.hellas-hero-text {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--hellas-gray);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hellas-hero-text strong {
  color: var(--hellas-gold);
  font-weight: 600;
}

.hellas-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hellas-hero-actions span {
  margin-right: 6px;
  font-size: 18px;
}

.hellas-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding: 28px;
  background: rgba(31,28,26,.25);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

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

.hellas-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--hellas-gold);
  margin-bottom: 6px;
}

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

/* Sections Common */
.hellas-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.hellas-section-heading {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
}

.hellas-section-text {
  font-size: 17px;
  color: var(--hellas-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Offers Section */
.hellas-offers {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--hellas-dark) 0%, rgba(31,28,26,.15) 100%);
}

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

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

.hellas-promo-value {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--hellas-gold), var(--hellas-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

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

.hellas-promo-details {
  display: grid;
  gap: 14px;
  margin: 28px auto;
  padding: 20px;
  background: rgba(0,0,0,.25);
  border-radius: 10px;
  max-width: 600px;
}

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

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

.hellas-deposit-item span {
  color: var(--hellas-gold);
  font-weight: 600;
}

.hellas-deposit-item strong {
  color: var(--hellas-white);
}

.hellas-promo-extra {
  margin: 24px auto;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--hellas-gray);
}

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

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

.hellas-promo-box {
  background: var(--hellas-panel);
  border: 1px solid var(--hellas-border);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: all var(--hellas-trans-base);
}

.hellas-promo-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--hellas-shadow-md);
  border-color: var(--hellas-gold);
}

.hellas-promo-box.hellas-featured {
  background: linear-gradient(135deg, rgba(212,165,116,.08) 0%, var(--hellas-panel) 100%);
  border-color: rgba(212,165,116,.3);
}

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

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

.hellas-promo-box p {
  font-size: 14px;
  color: var(--hellas-gray);
  line-height: 1.5;
  margin-bottom: 16px;
}

.hellas-promo-highlight {
  font-size: 16px;
  font-weight: 800;
  color: var(--hellas-gold);
}

.hellas-promo-timer {
  padding: 6px 14px;
  background: rgba(255,107,53,.15);
  border-radius: 6px;
  color: #ff6b35;
  font-weight: 700;
  font-size: 13px;
}

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

.hellas-features-list {
  display: grid;
  gap: 32px;
}

.hellas-feature-item {
  background: var(--hellas-panel);
  border: 1px solid var(--hellas-border);
  border-radius: 14px;
  padding: 32px;
  transition: all var(--hellas-trans-base);
}

.hellas-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--hellas-shadow-lg);
  border-color: var(--hellas-gold);
}

.hellas-feature-item.hellas-premium {
  background: linear-gradient(135deg, rgba(212,165,116,.06) 0%, var(--hellas-panel) 100%);
  border-color: rgba(212,165,116,.2);
}

.hellas-feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hellas-feature-emoji {
  font-size: 32px;
}

.hellas-feature-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--hellas-white);
}

.hellas-feature-content p {
  font-size: 15px;
  color: var(--hellas-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.hellas-feature-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hellas-feature-tags span {
  padding: 4px 10px;
  background: rgba(212,165,116,.1);
  border: 1px solid rgba(212,165,116,.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--hellas-gold);
}

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

.hellas-game-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hellas-tab {
  padding: 10px 20px;
  background: transparent;
  color: var(--hellas-gray);
  border: 1px solid var(--hellas-border);
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--hellas-trans-fast);
}

.hellas-tab.active {
  background: var(--hellas-gold);
  color: #000;
  border-color: var(--hellas-gold);
}

.hellas-tab:hover:not(.active) {
  border-color: var(--hellas-gold);
  color: var(--hellas-gold);
}

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

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

.hellas-game-card:hover {
  transform: scale(1.04);
  box-shadow: var(--hellas-shadow-lg);
}

.hellas-game-card.hellas-hot {
  border: 2px solid var(--hellas-gold);
}

.hellas-game-card.hellas-exclusive {
  background: linear-gradient(135deg, rgba(212,165,116,.08) 0%, var(--hellas-panel) 100%);
}

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

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

.hellas-game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.95) 100%);
  padding: 18px;
  transform: translateY(0);
  transition: transform var(--hellas-trans-fast);
}

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

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

.hellas-game-rtp,
.hellas-live-indicator {
  font-size: 11px;
  font-weight: 600;
  color: var(--hellas-gold);
  display: block;
  margin-bottom: 10px;
}

.hellas-live-indicator {
  color: #ff4444;
}

.hellas-jackpot-amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--hellas-gold);
  margin-bottom: 12px;
}

.hellas-game-play {
  padding: 8px 18px;
  background: var(--hellas-green);
  color: #000;
  border-radius: 5px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all var(--hellas-trans-fast);
}

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

.hellas-games-cta {
  text-align: center;
}

.hellas-games-text {
  margin-bottom: 24px;
  font-size: 16px;
  color: var(--hellas-gray);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.hellas-live-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-bottom: 40px;
}

.hellas-live-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--hellas-white);
}

.hellas-live-text p {
  font-size: 15px;
  color: var(--hellas-gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.hellas-live-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  background: var(--hellas-panel);
  border-radius: 12px;
  min-width: 200px;
}

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

.hellas-live-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--hellas-gold);
  display: block;
  margin-bottom: 6px;
}

.hellas-live-label {
  font-size: 12px;
  color: var(--hellas-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hellas-live-games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.hellas-live-game {
  background: var(--hellas-panel);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: all var(--hellas-trans-base);
}

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

.hellas-live-game.hellas-vip {
  border: 2px solid var(--hellas-gold);
}

.hellas-live-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,0,0,.85);
  color: white;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hellas-live-game h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* Payments Section */
.hellas-payments {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--hellas-dark) 0%, rgba(31,28,26,.1) 100%);
}

.hellas-payment-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.hellas-payment-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--hellas-white);
}

.hellas-payment-text p {
  font-size: 15px;
  color: var(--hellas-gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.hellas-payment-methods h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--hellas-gold);
}

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

.hellas-method {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: var(--hellas-panel);
  border: 1px solid var(--hellas-border);
  border-radius: 8px;
  font-size: 13px;
  transition: all var(--hellas-trans-fast);
}

.hellas-method:hover {
  border-color: var(--hellas-gold);
  transform: translateX(2px);
}

.hellas-method-icon {
  font-size: 18px;
}

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

.hellas-payment-feature {
  text-align: center;
  padding: 20px;
  background: var(--hellas-panel);
  border-radius: 10px;
}

.hellas-payment-feature h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--hellas-white);
}

.hellas-payment-feature p {
  font-size: 13px;
  color: var(--hellas-gray);
}

/* Sports Section */
.hellas-sports {
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(31,28,26,.15) 0%, var(--hellas-dark) 100%);
}

.hellas-sports-content {
  margin-bottom: 32px;
}

.hellas-sports-text {
  font-size: 15px;
  color: var(--hellas-gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.hellas-sports-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.hellas-sport-item {
  text-align: center;
  padding: 24px;
  background: var(--hellas-panel);
  border-radius: 10px;
  transition: all var(--hellas-trans-base);
}

.hellas-sport-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--hellas-shadow-md);
}

.hellas-sport-item span {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.hellas-sport-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hellas-sport-item p {
  font-size: 13px;
  color: var(--hellas-gray);
}

.hellas-sports-promo {
  background: linear-gradient(135deg, rgba(0,212,170,.08) 0%, rgba(212,165,116,.08) 100%);
  border: 2px solid var(--hellas-green);
  border-radius: 14px;
  padding: 36px;
  text-align: center;
}

.hellas-sports-promo h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--hellas-green), var(--hellas-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hellas-sports-promo p {
  font-size: 16px;
  color: var(--hellas-gray);
  margin-bottom: 24px;
}

/* Content Section */
.hellas-content {
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(31,28,26,.08) 0%, var(--hellas-dark) 100%);
}

.hellas-article h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--hellas-white);
}

.hellas-article h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 14px;
  color: var(--hellas-gold);
}

.hellas-article p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hellas-gray);
  margin-bottom: 18px;
}

.hellas-article strong {
  color: var(--hellas-white);
  font-weight: 600;
}

/* Calculator Section */
.hellas-calculator {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(212,165,116,.05) 0%, rgba(0,212,170,.05) 100%);
}

.hellas-calc-header {
  text-align: center;
  margin-bottom: 32px;
}

.hellas-calc-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.hellas-calc-header p {
  font-size: 16px;
  color: var(--hellas-gray);
}

.hellas-calc-content {
  max-width: 600px;
  margin: 0 auto;
  background: var(--hellas-panel);
  border-radius: 14px;
  padding: 32px;
}

.hellas-calc-input {
  margin-bottom: 28px;
}

.hellas-calc-input label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--hellas-gold);
}

.hellas-calc-slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hellas-calc-slider input {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  background: var(--hellas-border);
  border-radius: 3px;
  outline: none;
}

.hellas-calc-slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--hellas-gold);
  border-radius: 50%;
  cursor: pointer;
}

.hellas-calc-slider span {
  font-size: 18px;
  font-weight: 700;
  color: var(--hellas-white);
  min-width: 80px;
}

.hellas-calc-results {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.hellas-calc-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: rgba(0,0,0,.2);
  border-radius: 6px;
  font-size: 14px;
}

.hellas-calc-item span {
  color: var(--hellas-gray);
}

.hellas-calc-item strong {
  color: var(--hellas-gold);
  font-weight: 700;
}

.hellas-calc-total {
  background: linear-gradient(135deg, rgba(212,165,116,.1) 0%, rgba(0,212,170,.1) 100%);
  border: 1px solid var(--hellas-gold);
}

.hellas-calc-total strong {
  font-size: 20px;
}

.hellas-calc-note {
  font-size: 12px;
  color: var(--hellas-muted);
  margin-bottom: 20px;
  text-align: center;
}

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

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

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

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

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

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

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

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

.hellas-footer-bottom p {
  color: var(--hellas-muted);
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.hellas-footer-disclaimer {
  margin-top: 12px;
  font-size: 12px;
}

/* Cookie Banner */
.hellas-cookies {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 450px;
  background: var(--hellas-panel);
  border: 1px solid var(--hellas-border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--hellas-shadow-lg);
  z-index: 2000;
  display: none;
}

.hellas-cookies.show {
  display: block;
}

.hellas-cookies p {
  font-size: 13px;
  color: var(--hellas-gray);
  margin-bottom: 16px;
}

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

.hellas-cookie-btn {
  padding: 8px 18px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--hellas-trans-fast);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .hellas-nav-list {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: var(--hellas-dark);
    flex-direction: column;
    padding: 28px;
    transition: left var(--hellas-trans-base);
  }

  .hellas-nav-list.active {
    left: 0;
  }

  .hellas-menu-toggle {
    display: flex;
  }

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

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

  .hellas-hero-heading {
    font-size: 32px;
  }

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

  .hellas-promo-list {
    grid-template-columns: 1fr;
  }

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

  .hellas-live-content {
    grid-template-columns: 1fr;
  }

  .hellas-payment-content {
    grid-template-columns: 1fr;
  }

  .hellas-methods-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hellas-hero-heading {
    font-size: 28px;
  }

  .hellas-main-promo {
    padding: 32px 20px;
  }

  .hellas-deposit-item {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}