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

:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gold-gradient: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --text-dark: #1a1a2e;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 40px;
  animation: bounce 2s ease-in-out infinite;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 24px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.header-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(102, 126, 234, 0.5);
}

.btn-icon {
  font-size: 20px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-main {
  font-size: 14px;
  line-height: 1;
}

.btn-sub {
  font-size: 10px;
  opacity: 0.9;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  color: var(--text-dark);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
}

.hero-cta-group {
  margin-bottom: 40px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 700;
  box-shadow: 0 8px 40px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.cta-primary:hover::after {
  width: 400px;
  height: 400px;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(102, 126, 234, 0.5);
}

.cta-icon {
  font-size: 28px;
  position: relative;
  z-index: 1;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.cta-main {
  font-size: 18px;
  line-height: 1;
}

.cta-sub {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 500;
}

.cta-arrow {
  font-size: 24px;
  position: relative;
  z-index: 1;
}

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

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

.stat-value {
  font-size: 32px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.badge-item {
  padding: 8px 16px;
  background: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

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

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  left: -50px;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: -50px;
  animation-delay: 1s;
}

.card-3 {
  bottom: 10%;
  left: -30px;
  animation-delay: 2s;
}

.card-icon {
  font-size: 32px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.card-desc {
  font-size: 12px;
  color: var(--text-light);
}

/* Why PayID Section */
.why-payid-section {
  padding: 80px 0;
  background: white;
}

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

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  color: #667eea;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
}

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

.feature-card {
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: #667eea;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-icon.instant {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.feature-icon.fast {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-icon.secure {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-icon.easy {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature-icon.nofees {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.feature-icon.support {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 15px;
}

.feature-badge {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  color: #667eea;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* Casinos Section */
.casinos-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.casino-card {
  position: relative;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: #667eea;
}

.casino-card.featured {
  border-color: #f6d365;
  box-shadow: 0 8px 40px rgba(246, 211, 101, 0.3);
}

.casino-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  color: var(--text-dark);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

.casino-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f8f9fa;
}

.casino-logo {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.casino-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

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

.stars {
  font-size: 14px;
}

.rating-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
}

.casino-bonus {
  text-align: center;
  padding: 12px 15px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 12px;
  margin-bottom: 12px;
}

.bonus-main {
  font-size: 20px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.2;
}

.bonus-sub {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
}

/* Casino footer and buttons */
.casino-footer {
  margin-top: 0;
}

.casino-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.casino-btn.primary {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  box-shadow: 0 4px 20px rgba(246, 211, 101, 0.4);
}

.casino-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
}

.casino-btn.primary:hover {
  box-shadow: 0 6px 30px rgba(246, 211, 101, 0.5);
}

.btn-arrow {
  font-size: 20px;
}

.casino-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
}

.section-cta {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  border-radius: 20px;
}

.cta-text {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 0;
  background: white;
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.step-icon {
  font-size: 60px;
  margin: 20px 0;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 15px;
}

.step-time {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  color: #667eea;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.step-arrow {
  font-size: 40px;
  color: #667eea;
  font-weight: bold;
}

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

.cta-large {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 25px 50px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  border-radius: 60px;
  box-shadow: 0 8px 40px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.cta-large:hover::before {
  left: 100%;
}

.cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(102, 126, 234, 0.5);
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Pokies Section */
.pokies-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.pokie-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.pokie-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pokie-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pokie-emoji {
  font-size: 80px;
  animation: bounce 2s ease-in-out infinite;
}

.pokie-content {
  padding: 25px;
}

.pokie-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.pokie-provider {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 15px;
}

.pokie-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.stat {
  padding: 6px 12px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.pokie-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.pokie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  cursor: pointer;
  user-select: none;
}

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

.faq-text {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-toggle {
  font-size: 28px;
  font-weight: 700;
  color: #667eea;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 25px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

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

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.5;
}

.cta-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-banner-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
}

.cta-banner-subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.cta-banner-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.banner-feature {
  font-size: 18px;
  color: white;
  font-weight: 600;
}

.cta-mega {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px 60px;
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 60px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-mega::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-mega:hover::after {
  width: 500px;
  height: 500px;
}

.cta-mega:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.4);
}

.mega-text {
  font-size: 24px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.mega-sub {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.mega-arrow {
  font-size: 28px;
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo-icon {
  font-size: 36px;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 800;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-trust {
  display: flex;
  gap: 10px;
}

.trust-item {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-responsible {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.help-numbers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.help-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.help-icon {
  font-size: 20px;
}

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

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

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

  .cta-primary {
    padding: 18px 30px;
  }

  .cta-main {
    font-size: 16px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-value {
    font-size: 24px;
  }

  .floating-card {
    display: none;
  }

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

  .features-grid,
  .casinos-grid,
  .pokies-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .casino-card {
    padding: 16px;
  }

  .casino-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .casino-name {
    font-size: 18px;
  }

  .casino-bonus {
    padding: 12px;
    margin-bottom: 12px;
  }

  .bonus-main {
    font-size: 18px;
  }

  .steps-container {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .cta-banner-title {
    font-size: 32px;
  }

  .cta-banner-subtitle {
    font-size: 18px;
  }

  .cta-banner-features {
    flex-direction: column;
    gap: 15px;
  }

  .cta-mega {
    padding: 25px 40px;
  }

  .mega-text {
    font-size: 18px;
  }

  .header-cta-btn .btn-sub {
    display: none;
  }

  .logo-main {
    font-size: 20px;
  }
}

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

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

  .casino-card {
    padding: 14px;
  }

  .casino-name {
    font-size: 16px;
  }

  .bonus-main {
    font-size: 16px;
  }

  .cta-primary {
    flex-direction: column;
    gap: 10px;
  }

  .cta-text {
    align-items: center;
  }

  .casino-btn {
    padding: 12px;
    font-size: 14px;
  }
}

/* Large screens - 3 columns */
@media (min-width: 1200px) {
  .casinos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra large screens - more compact */
@media (min-width: 1400px) {
  .casinos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: #667eea;
  color: white;
}
