/* WinMegaAU - Modern Design System 2024 */
:root {
  --winmegaau-primary: #6366F1;
  --winmegaau-secondary: #F97316;
  --winmegaau-accent: #8B5CF6;
  --winmegaau-success: #059669;
  --winmegaau-warning: #D97706;
  --winmegaau-error: #DC2626;
  --winmegaau-bg: #F1F5F9;
  --winmegaau-white: #FFFFFF;
  --winmegaau-dark: #0F172A;
  --winmegaau-text: #1E293B;
  --winmegaau-text-light: #475569;
  --winmegaau-border: #CBD5E1;
  --winmegaau-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --winmegaau-gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #A855F7 100%);
  --winmegaau-gradient-secondary: linear-gradient(135deg, #F97316 0%, #FB923C 50%, #FDBA74 100%);
  --winmegaau-gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--winmegaau-bg);
  color: var(--winmegaau-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography - Responsive */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

/* Desktop Typography */
h1 { font-size: 3.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.25rem; }
h4 { font-size: 1.875rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

/* Tablet Typography */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 2rem; }
  h4 { font-size: 1.75rem; }
  h5 { font-size: 1.375rem; }
  h6 { font-size: 1.125rem; }
}

/* Mobile Typography */
@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
  h5 { font-size: 1.25rem; }
  h6 { font-size: 1.125rem; }
}

/* Small Mobile Typography */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.375rem; }
  h5 { font-size: 1.125rem; }
  h6 { font-size: 1rem; }
}

/* Navigation */
.winmegaau-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.winmegaau-navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
  .winmegaau-navbar-inner {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .winmegaau-navbar-inner {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .winmegaau-navbar-inner {
    padding: 0 0.75rem;
  }
}

.winmegaau-navbar-home-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--winmegaau-text);
  font-weight: 900;
  font-size: 1.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.winmegaau-navbar-home-link::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--winmegaau-gradient);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.winmegaau-navbar-home-link:hover::before {
  width: 100%;
}

.winmegaau-navbar-home-link:hover {
  color: var(--winmegaau-primary);
  transform: translateY(-1px);
}

.winmegaau-navbar-logo {
  margin-right: 1rem;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.winmegaau-navbar-home-link:hover .winmegaau-navbar-logo {
  transform: scale(1.05) rotate(5deg);
}

.winmegaau-navbar-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.winmegaau-nav-link {
  text-decoration: none;
  color: var(--winmegaau-primary);
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}


.winmegaau-nav-link:hover,
.winmegaau-nav-link.active {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
}

.winmegaau-auth-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.winmegaau-btn-login,
.winmegaau-btn-register {
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 16px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.winmegaau-btn-login {
  color: var(--winmegaau-primary);
  background: transparent;
  border-color: var(--winmegaau-primary);
}

.winmegaau-btn-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--winmegaau-primary);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.winmegaau-btn-login:hover::before {
  left: 0;
}

.winmegaau-btn-login:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
}

.winmegaau-btn-register {
  background: var(--winmegaau-gradient);
  color: white;
  border-color: transparent;
}

.winmegaau-btn-register:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.5);
}

.winmegaau-navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.winmegaau-navbar-toggle:hover {
  background: rgba(99, 102, 241, 0.1);
}

.winmegaau-navbar-toggle-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--winmegaau-primary);
  margin: 6px 0;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .winmegaau-navbar-toggle {
    display: block;
  }
  
  .winmegaau-navbar-right {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2.5rem;
    box-shadow: var(--winmegaau-shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .winmegaau-navbar-right.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .winmegaau-auth-links {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .winmegaau-btn-login,
  .winmegaau-btn-register {
    width: 100%;
    text-align: center;
  }
}

/* Hero Section - Completely New Layout */
.winmegaau-hero {
  background: var(--winmegaau-gradient-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.winmegaau-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.winmegaau-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Responsive Hero Container */
@media (max-width: 1024px) {
  .winmegaau-hero-container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .winmegaau-hero-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .winmegaau-hero-container {
    padding: 0 0.75rem;
  }
}

/* Background Elements */
.winmegaau-hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.winmegaau-hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.winmegaau-hero-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  height: 2px;
  animation: slide 8s ease-in-out infinite;
}

.line-1 {
  width: 200px;
  top: 30%;
  right: 10%;
  animation-delay: 1s;
}

.line-2 {
  width: 150px;
  bottom: 40%;
  left: 5%;
  animation-delay: 3s;
}

@keyframes slide {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(100%); opacity: 1; }
}

/* Main Content Layout */
.winmegaau-hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Column */
.winmegaau-hero-left {
  position: relative;
  z-index: 3;
}

.winmegaau-hero-text-content {
  max-width: 600px;
}

.winmegaau-hero-badge-container {
  margin-bottom: 2rem;
}

.winmegaau-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

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

.winmegaau-hero-badge:hover::before {
  left: 100%;
}

.winmegaau-hero-title {
  color: white;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Hero Title */
@media (max-width: 1024px) {
  .winmegaau-hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .winmegaau-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .winmegaau-hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.winmegaau-hero-highlight {
  background: var(--winmegaau-gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.winmegaau-hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--winmegaau-gradient-secondary);
  border-radius: 2px;
}

.winmegaau-hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.375rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 500;
}

/* Responsive Hero Description */
@media (max-width: 1024px) {
  .winmegaau-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .winmegaau-hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .winmegaau-hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
}

/* Stats Section */
.winmegaau-hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.winmegaau-stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.winmegaau-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.winmegaau-stat-number {
  color: var(--winmegaau-secondary);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.winmegaau-stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA Section */
.winmegaau-hero-cta-section {
  margin-top: 2rem;
}

.winmegaau-cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.winmegaau-btn-primary,
.winmegaau-btn-secondary {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  text-align: center;
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

.winmegaau-btn-primary {
  background: var(--winmegaau-gradient-secondary);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.4);
}

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

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

.winmegaau-btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.6);
}

.winmegaau-btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.winmegaau-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.2);
}

/* Trust Badges */
.winmegaau-hero-trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.winmegaau-trust-badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.winmegaau-trust-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Right Column - Lottery Card */
.winmegaau-hero-right {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.winmegaau-hero-visual-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

/* Lottery Card */
.winmegaau-hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: cardFloat 8s ease-in-out infinite;
}

.winmegaau-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--winmegaau-gradient-secondary);
}

.winmegaau-hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.winmegaau-hero-card-icon {
  font-size: 2rem;
  background: var(--winmegaau-gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.winmegaau-hero-card-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
}

.winmegaau-hero-card-content {
  text-align: center;
}

.winmegaau-hero-card-numbers {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.winmegaau-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--winmegaau-gradient);
  color: white;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  animation: numberPulse 2s ease-in-out infinite;
}

.winmegaau-number:nth-child(1) { animation-delay: 0s; }
.winmegaau-number:nth-child(2) { animation-delay: 0.2s; }
.winmegaau-number:nth-child(3) { animation-delay: 0.4s; }
.winmegaau-number:nth-child(4) { animation-delay: 0.6s; }
.winmegaau-number:nth-child(5) { animation-delay: 0.8s; }
.winmegaau-number:nth-child(6) { animation-delay: 1s; }

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

.winmegaau-hero-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.winmegaau-hero-card-time,
.winmegaau-hero-card-prize {
  text-align: center;
}

.winmegaau-time-label,
.winmegaau-prize-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.winmegaau-time-value {
  display: block;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
}

.winmegaau-prize-value {
  display: block;
  color: var(--winmegaau-secondary);
  font-size: 1.5rem;
  font-weight: 900;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
  75% { transform: translateY(-12px) rotate(0.5deg); }
}

/* Floating Elements */
.winmegaau-hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.winmegaau-floating-item {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.floating-1 {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.floating-2 {
  top: 20%;
  right: -20px;
  animation-delay: 1.5s;
}

.floating-3 {
  bottom: 30%;
  left: -15px;
  animation-delay: 3s;
}

.floating-4 {
  bottom: -10px;
  right: -25px;
  animation-delay: 4.5s;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .winmegaau-hero-content-wrapper {
    gap: 3rem;
  }
  
  .winmegaau-hero-stats {
    gap: 1.5rem;
  }
  
  .winmegaau-stat-item {
    padding: 1.25rem;
  }
  
  .winmegaau-stat-number {
    font-size: 1.75rem;
  }
  
  .winmegaau-hero-card {
    padding: 1.75rem;
  }
  
  .winmegaau-number {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .winmegaau-hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .winmegaau-hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .winmegaau-stat-item {
    padding: 1rem;
    min-width: 120px;
  }
  
  .winmegaau-stat-number {
    font-size: 1.5rem;
  }
  
  .winmegaau-stat-label {
    font-size: 0.75rem;
  }

  .winmegaau-cta-buttons {
    justify-content: center;
    gap: 1rem;
  }
  
  .winmegaau-btn-primary,
  .winmegaau-btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 160px;
  }

  .winmegaau-hero-trust-badges {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .winmegaau-trust-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .winmegaau-hero-card {
    margin: 0 auto;
    padding: 1.5rem;
  }

  .winmegaau-hero-card-numbers {
    gap: 0.5rem;
  }

  .winmegaau-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .winmegaau-hero-card-title {
    font-size: 1.25rem;
  }
  
  .winmegaau-time-value,
  .winmegaau-prize-value {
    font-size: 1rem;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .winmegaau-hero-content-wrapper {
    gap: 2rem;
  }
  
  .winmegaau-hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .winmegaau-stat-item {
    width: 100%;
    max-width: 200px;
    padding: 0.875rem;
  }
  
  .winmegaau-stat-number {
    font-size: 1.375rem;
  }
  
  .winmegaau-stat-label {
    font-size: 0.6875rem;
  }

  .winmegaau-cta-buttons {
  
    align-items: center;
    gap: 0.75rem;
  }
  
  .winmegaau-btn-primary,
  .winmegaau-btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .winmegaau-hero-trust-badges {
    /*flex-direction: column;*/
    align-items: center;
    gap: 0.5rem;
  }
  
  .winmegaau-trust-badge {
    font-size: 0.6875rem;
    padding: 0.25rem 0.5rem;
  }

  .winmegaau-hero-card {
    padding: 1.25rem;
  }

  .winmegaau-hero-card-numbers {
    gap: 0.375rem;
  }

  .winmegaau-number {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }
  
  .winmegaau-hero-card-title {
    font-size: 1.125rem;
  }
  
  .winmegaau-time-value,
  .winmegaau-prize-value {
    font-size: 0.9375rem;
  }
  
  .winmegaau-time-label,
  .winmegaau-prize-label {
    font-size: 0.75rem;
  }
}

/* Main Content */
.winmegaau-features {
  padding: 6rem 0;
  background: white;
  position: relative;
}

/* Responsive Main Content */
@media (max-width: 1024px) {
  .winmegaau-features {
    padding: 5rem 0;
  }
  
  .winmegaau-features .container > .row > .col-lg-10 > div {
    padding: 4rem !important;
    border-radius: 20px !important;
  }
  
  .winmegaau-features h2 {
    font-size: 3rem !important;
    margin-bottom: 2rem !important;
  }
  
  .winmegaau-features p {
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
  }
  
  .winmegaau-features .winmegaau-btn-large {
    font-size: 1.125rem !important;
    padding: 1.25rem 2.5rem !important;
  }
  
  .winmegaau-features .winmegaau-cta-buttons {
    margin-top: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .winmegaau-features {
    padding: 4rem 0;
  }
  
  .winmegaau-features .container > .row > .col-lg-10 > div {
    padding: 3rem 2rem !important;
    border-radius: 16px !important;
  }
  
  .winmegaau-features h2 {
    font-size: 2.5rem !important;
    margin-bottom: 1.75rem !important;
  }
  
  .winmegaau-features p {
    font-size: 1.1rem !important;
    margin-bottom: 1.75rem !important;
    line-height: 1.6 !important;
  }
  
  .winmegaau-features .winmegaau-btn-large {
    font-size: 1rem !important;
    padding: 1.125rem 2rem !important;
  }
  
  .winmegaau-features .winmegaau-cta-buttons {
    margin-top: 2rem !important;
  }
}

@media (max-width: 480px) {
  .winmegaau-features {
    padding: 3rem 0;
  }
  
  .winmegaau-features .container > .row > .col-lg-10 > div {
    padding: 2rem 1.5rem !important;
    border-radius: 12px !important;
  }
  
  .winmegaau-features h2 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .winmegaau-features p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.5 !important;
  }
  
  .winmegaau-features .winmegaau-btn-large {
    font-size: 0.9375rem !important;
    padding: 1rem 1.75rem !important;
  }
  
  .winmegaau-features .winmegaau-cta-buttons {
    margin-top: 1.5rem !important;
  }
}

.winmegaau-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--winmegaau-bg), white);
}

.winmegaau-section-title {
  text-align: center;
  color: var(--winmegaau-dark);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 4rem;
  position: relative;
}

.winmegaau-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: var(--winmegaau-gradient);
  border-radius: 3px;
}

/* Forms */
.winmegaau-form-container {
  max-width: 550px;
  margin: 140px auto 6rem;
  padding: 3.5rem;
  background: white;
  border-radius: 24px;
  box-shadow: var(--winmegaau-shadow);
  position: relative;
  border: 1px solid var(--winmegaau-border);
}

/* Responsive Form Container */
@media (max-width: 1024px) {
  .winmegaau-form-container {
    max-width: 500px;
    margin: 120px auto 5rem;
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .winmegaau-form-container {
    max-width: 100%;
    margin: 100px 1rem 4rem;
    padding: 2.5rem 2rem;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .winmegaau-form-container {
    margin: 80px 0.75rem 3rem;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
}

.winmegaau-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--winmegaau-gradient);
  border-radius: 24px 24px 0 0;
}

.winmegaau-form-title {
  text-align: center;
  color: var(--winmegaau-dark);
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
}

/* Responsive Form Title */
@media (max-width: 1024px) {
  .winmegaau-form-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .winmegaau-form-title {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
  }
}

@media (max-width: 480px) {
  .winmegaau-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.winmegaau-form-group {
  margin-bottom: 2rem;
}

.winmegaau-form-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--winmegaau-text);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.winmegaau-form-input {
  width: 100%;
  padding: 1.25rem;
  border: 2px solid var(--winmegaau-border);
  border-radius: 16px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  font-weight: 500;
}

/* Responsive Form Inputs */
@media (max-width: 768px) {
  .winmegaau-form-input {
    padding: 1rem;
    font-size: 0.9375rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .winmegaau-form-input {
    padding: 0.875rem;
    font-size: 0.875rem;
    border-radius: 10px;
  }
}

.winmegaau-form-input:focus {
  outline: none;
  border-color: var(--winmegaau-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.winmegaau-form-submit {
  width: 100%;
  padding: 1.25rem;
  background: var(--winmegaau-gradient);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Responsive Form Submit Button */
@media (max-width: 768px) {
  .winmegaau-form-submit {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 12px;
    margin-top: 1.25rem;
  }
}

@media (max-width: 480px) {
  .winmegaau-form-submit {
    padding: 0.875rem;
    font-size: 0.9375rem;
    border-radius: 10px;
    margin-top: 1rem;
  }
}

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

.winmegaau-form-submit:hover::before {
  left: 100%;
}

.winmegaau-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
}

.winmegaau-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.winmegaau-form-link {
  text-align: center;
  margin-top: 2.5rem;
}

.winmegaau-form-link a {
  color: var(--winmegaau-primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.winmegaau-form-message {
  padding: 1.25rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  font-weight: 700;
  border: 2px solid transparent;
}

.winmegaau-form-message.success {
  background: rgba(5, 150, 105, 0.1);
  color: var(--winmegaau-success);
  border-color: rgba(5, 150, 105, 0.2);
}

.winmegaau-form-message.error {
  background: rgba(220, 38, 38, 0.1);
  color: var(--winmegaau-error);
  border-color: rgba(220, 38, 38, 0.2);
}

/* Footer */
.winmegaau-footer {
  background: var(--winmegaau-gradient-dark);
  color: white;
  padding: 5rem 0 3rem;
  position: relative;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .winmegaau-footer {
    padding: 4rem 0 2.5rem;
  }

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

  .winmegaau-footer-logo {
    display: none;
  }

}

@media (max-width: 768px) {
  .winmegaau-footer {
    padding: 3rem 0 2rem;
  }
}

@media (max-width: 480px) {
  .winmegaau-footer {
    padding: 2.5rem 0 1.5rem;
  }
}

.winmegaau-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, white, var(--winmegaau-dark));
}

.winmegaau-footer-brand {
  align-items: center;
  margin-bottom: 2.5rem;
}

.winmegaau-footer-logo {
  width: 56px;
  height: 56px;
  margin-right: 1.25rem;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

/* Hide logo on smaller screens */
@media (max-width: 768px) {
  .winmegaau-footer-logo {
    display: none;
  }
  
  .winmegaau-footer-brand {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .winmegaau-footer-brand h4 {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .winmegaau-footer-brand {
    margin-bottom: 2rem;
  }
  
  .winmegaau-footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .winmegaau-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

.winmegaau-footer h4,
.winmegaau-footer h5 {
  color: white;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.winmegaau-contact-info p {
  display: flex;
  gap: .5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.winmegaau-contact-info a {
  display: block;
}

.winmegaau-contact-info p,
.winmegaau-contact-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.winmegaau-contact-info a:hover {
  color: var(--winmegaau-secondary);
  transform: translateX(5px);
}

/* Responsive contact info */
@media (max-width: 768px) {
  .winmegaau-contact-info {
    text-align: center;
  }
  
  .winmegaau-contact-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .winmegaau-footer h5 {
    text-align: center;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .winmegaau-contact-info p {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  
  .winmegaau-contact-info i {
    margin-right: 0.5rem;
  }
}

.winmegaau-responsible-gaming {
  background: rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  border-radius: 20px;
  margin: 3rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.winmegaau-responsible-gaming h5 {
  color: var(--winmegaau-secondary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.winmegaau-responsible-gaming p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-weight: 500;
}

/* Responsive responsible gaming */
@media (max-width: 768px) {
  .winmegaau-responsible-gaming {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
    border-radius: 16px;
  }
  
  .winmegaau-responsible-gaming h5 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
  }
  
  .winmegaau-responsible-gaming p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .winmegaau-responsible-gaming {
    padding: 1.5rem 1rem;
    margin: 1.5rem 0;
    border-radius: 12px;
  }
  
  .winmegaau-responsible-gaming h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .winmegaau-responsible-gaming p {
    font-size: 0.85rem;
    margin-bottom: 0.875rem;
    line-height: 1.5;
  }
}

.winmegaau-responsible-gaming a {
  color: var(--winmegaau-secondary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.winmegaau-responsible-gaming a:hover {
  color: #FDBA74;
  text-decoration: underline;
}

.winmegaau-help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.winmegaau-help-links a {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.winmegaau-help-links a:hover {
  background: var(--winmegaau-secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.4);
}

/* Responsive help links */
@media (max-width: 768px) {
  .winmegaau-help-links {
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
  }
  
  .winmegaau-help-links a {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .winmegaau-help-links {
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-direction: column;
    align-items: center;
  }
  
  .winmegaau-help-links a {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    border-radius: 8px;
    width: 100%;
    max-width: 200px;
    text-align: center;
  }
}

.winmegaau-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
  margin-top: 3rem;
}

.winmegaau-age-badge {
  display: inline-block;
  background: var(--winmegaau-gradient-secondary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
  position: relative;
  overflow: hidden;
}

/* Responsive footer bottom */
@media (max-width: 768px) {
  .winmegaau-footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
  }
  
  .winmegaau-footer-bottom p {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .winmegaau-age-badge {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .winmegaau-footer-bottom .col-md-4 {
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .winmegaau-footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .winmegaau-footer-bottom p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .winmegaau-age-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

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

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

/* Cookie Consent */
.winmegaau-cookie-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: var(--winmegaau-shadow);
  z-index: 10000;
  max-width: 550px;
  margin: 0 auto;
  border: 1px solid var(--winmegaau-border);
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.winmegaau-cookie-content {
  padding: 2.5rem;
  text-align: center;
}

.winmegaau-cookie-link {
  color: var(--winmegaau-primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.winmegaau-btn-cookie-accept {
  background: var(--winmegaau-gradient);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

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

.winmegaau-btn-cookie-accept:hover::before {
  left: 100%;
}

.winmegaau-btn-cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
  .winmegaau-cookie-content {
    padding: 2rem;
  }
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Responsive Container */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

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

.text-center { text-align: center; }
.text-start { text-align: left; }
.text-end { text-align: right; }

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Loading Animation */
.winmegaau-loading {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

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

/* Privacy Policy Responsive */
.privacy-policy-container {
  background: white;
  padding: 5rem;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .privacy-policy-container {
    padding: 4rem;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .privacy-policy-container {
    padding: 3rem 2rem;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .privacy-policy-container {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }
}

/* Print Styles */
@media print {
  .winmegaau-navbar,
  .winmegaau-footer,
  .winmegaau-cookie-popup {
    display: none;
  }

  .winmegaau-hero {
    background: white !important;
    color: black !important;
  }
} 