/* Root Variables */
:root {
    --primary-color: #a05544;
    --secondary-color: #F4D03F;
    --accent-color: #FFD700;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #a05544 0%, #6F4E37 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #F4D03F 100%);
    --gradient-hero: linear-gradient(135deg, rgba(160, 85, 68, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    --shadow-light: 0 4px 20px rgba(160, 85, 68, 0.1);
    --shadow-medium: 0 8px 30px rgba(160, 85, 68, 0.2);
    --shadow-heavy: 0 15px 50px rgba(160, 85, 68, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --nav-height: 80px; /* offset for fixed header */
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: var(--nav-height);
}

/* Prevent scroll chaining and bounce when modal is open */
html.modal-open, body.modal-open {
    overscroll-behavior-y: contain;
}

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

/* Navigation */
.giveaway-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow-light);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

/* Logo image in giveaway nav */
.nav-logo-image {
    width: 100px;
    height: auto;
    object-fit: contain;
    display: block;
}

.back-home {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.back-home:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="wedding" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23wedding)"/></svg>');
}

.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    animation: sparkleFloat 6s infinite ease-in-out;
}

.sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; }
.sparkle:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.sparkle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.sparkle:nth-child(5) { top: 30%; left: 50%; animation-delay: 4s; }
.sparkle:nth-child(6) { top: 70%; left: 90%; animation-delay: 5s; }

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: heroFadeIn 1s ease-out;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
    to { text-shadow: 0 4px 30px rgba(255, 215, 0, 0.5); }
}

.hero-title .highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}
 .btn-primary:focus-visible,
 .btn-secondary:focus-visible,
 .btn-enter:focus-visible,
 .btn-know-more:focus-visible,
 .btn-submit:focus-visible,
 .share-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,0.6), 0 0 0 6px rgba(160,85,68,0.3); }

/* Countdown Section */
.countdown-section {
    padding: 80px 0;
    background: var(--white);
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.countdown-card, .tickets-card, .price-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(45, 199, 210, 0.1);
}

.countdown-card:hover, .tickets-card:hover, .price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.countdown-card h3, .tickets-card h3, .price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 10px;
    border-radius: var(--border-radius);
    min-width: 60px;
}

.time-value {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.time-label {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 5px;
}

.countdown-end {
    color: var(--text-light);
    font-size: 0.9rem;
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.counter-total {
    font-size: 1.2rem;
    color: var(--text-light);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E8F4FD;
    border-radius: 4px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.price-breakdown {
    margin: 20px 0;
}

.price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-light);
}

.price-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    border-top: 2px solid var(--primary-color);
    padding-top: 10px;
    margin-top: 15px;
}

.btn-enter {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
}

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

/* What's Included Section */
.whats-included-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FDFF 0%, #E8F4FD 100%);
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 199, 210, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--gradient-gold);
}

.service-icon i {
    color: var(--white);
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Prize Section */
.prize-section {
    padding: 80px 0;
    background: var(--white);
}

/* New Prize Grid */
.prize-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
  .prize-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .prize-grid { grid-template-columns: 1fr; }
}

.prize-card {
    position: relative;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.prize-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.prize-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.35);
}

.prize-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}
.prize-info {
    margin-top: 6px;
    color: #f2f2f2;
}
.prize-card .btn-know-more {
    margin-top: 14px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}
.prize-card .btn-know-more:hover {
    background: rgba(255,255,255,0.25);
}

/* Tier themes */
.tier-gold {
    background: linear-gradient(135deg, #b8860b 0%, #ffd700 60%, #a16b2d 100%);
}
.tier-royal {
    background: linear-gradient(135deg, #4b2c20 0%, #a05544 55%, #6f4e37 100%);
}
.tier-copper {
    background: linear-gradient(135deg, #5a3a2a 0%, #c17b47 60%, #845a3b 100%);
}
.tier-indigo {
    background: linear-gradient(135deg, #1f2742 0%, #274b78 50%, #1c3458 100%);
}
.tier-teal {
    background: linear-gradient(135deg, #0f3a3a 0%, #1f6b6b 60%, #135252 100%);
}
.tier-rose {
    background: linear-gradient(135deg, #4b2a36 0%, #a05572 60%, #6f3e52 100%);
}
.tier-sand {
    background: linear-gradient(135deg, #3f3127 0%, #8c6a4a 60%, #564334 100%);
}

/* Announcement Banner */
.announcement-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  margin-top: 24px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(168,117,63,0.95) 0%, rgba(111,78,55,0.95) 60%, rgba(48,37,30,0.95) 100%);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18), inset 0 0 0 1px rgba(255,255,255,0.15);
  overflow: hidden;
}
.announcement-banner::after {
  content: '';
  position: absolute;
  top: 0; left: -50%; right: -50%; bottom: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  transform: translateX(-30%);
  animation: bannerShine 6s linear infinite;
}
@keyframes bannerShine {
  0% { transform: translateX(-60%); }
  100% { transform: translateX(60%); }
}

.banner-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
.banner-content { flex: 1; }
.banner-title {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.date-highlight { color: #FFD700; text-shadow: 0 1px 6px rgba(255,215,0,0.35); }
.live-pill {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
}
.live-pill:hover { background: rgba(255,255,255,0.25); }

.sparkle { will-change: transform, opacity; }
.aurora-wave { will-change: transform, filter, opacity; }

@media (prefers-reduced-motion: reduce) {
  .sparkle,
  .aurora-wave,
  .hero-content::before,
  .highlights-ticker .ticker-track { animation: none !important; }
  .hero-title { animation: none !important; }
  .hero-title .highlight { animation: none !important; }
  .ticket-flip .ticket-front,
  .ticket-flip .ticket-back { transition: none !important; }
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFD700, #F4D03F);
  color: #2C3E50;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(255,215,0,0.35);
  text-decoration: none;
}
.banner-cta:hover { filter: brightness(1.05); }

/* Mobile tweaks for announcement banner and hero */
@media (max-width: 768px) {
  .announcement-banner {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    overflow: visible; /* prevent clipping of CTA on small screens */
  }
  .banner-icon { font-size: 1.4rem; }
  .banner-content { flex: 1 1 100%; }
  .banner-title { font-size: clamp(1rem, 3.5vw, 1.15rem); line-height: 1.25; }
  .live-pill {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    margin-top: 8px;
  }
  .banner-cta {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  /* Show luxury frame on mobile with compact sizing */
  .hero-content::before {
    content: '';
    display: block !important;
    inset: -6px;
    border-radius: 16px;
    animation-duration: 16s;
  }
}

@media (max-width: 480px) {
  .announcement-banner { border-radius: 14px; padding: 12px 14px; gap: 10px; }
  .banner-icon { font-size: 1.2rem; }
  .banner-cta { padding: 12px; font-size: 0.95rem; }
}

.prize-amount {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.prize-description {
    font-size: 1rem;
    opacity: 0.9;
}

/* Know More button — themed glass pill, consistent with hero buttons */
.btn-know-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    text-decoration: none;
}

.btn-know-more:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-know-more:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.btn-know-more::after {
    content: '→';
    font-weight: 700;
    transition: transform 0.2s ease;
}

.btn-know-more:hover::after {
    transform: translateX(2px);
}

.announcement-info {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #E8F4FD 0%, #F8FDFF 100%);
    border-radius: var(--border-radius);
}

.announcement-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Registration Section */
.registration-section {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.registration-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.registration-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #E8F4FD;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 199, 210, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 0.7;
}

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

/* Payment Summary */
.payment-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 25px 0;
}

.payment-summary h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.price-item.total {
    border-top: 2px solid var(--primary-color);
    padding-top: 10px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Loading State */
.loading-state {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    z-index: 100;
}

.loading-state.active {
    display: flex;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-message {
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    max-width: 300px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Error Styling */
.field-error {
    color: #e74c3c !important;
    font-size: 0.875rem !important;
    margin-top: 5px !important;
    display: block;
    animation: fadeInError 0.3s ease;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

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

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

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    z-index: 1000;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
}

.notification.success {
    background: #27ae60;
}

.notification.error {
    background: #e74c3c;
}

.notification.info {
    background: var(--primary-color);
}

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

/* Terms Section */
.terms-section {
    padding: 60px 0;
    background: var(--white);
}

.terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    background: #F8FDFF;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.terms-header:hover {
    background: #E8F4FD;
}

.terms-arrow {
    transition: var(--transition);
}

.terms-arrow.rotated {
    transform: rotate(180deg);
}

.terms-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.terms-content.expanded {
    max-height: 500px;
    padding: 20px;
}

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

.terms-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.terms-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #a05544 0%, #6F4E37 100%);
    color: var(--white);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.contact-item i {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.social-share {
    text-align: center;
}

.social-share h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.share-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    /* Center content via flex to avoid top:50% transform jitter on mobile */
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
    touch-action: none; /* avoid scroll propagation on touch */
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: var(--white);
    padding: 0;
    border-radius: var(--border-radius);
    max-width: 1000px; /* allow large media like 1200x600 to scale nicely */
    width: 95%;
    animation: modalSlideIn 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}

@keyframes modalSlideIn {
    from { transform: translate(-50%, -60%); opacity: 0; }
    to { transform: translate(-50%, -50%); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #E8F4FD;
}

/* Improve mobile usability */
@media (max-width: 768px) {
    /* Prevent repeated slide animations and viewport jitter on mobile */
    .modal { animation: none; }
    .modal-content {
        width: 96%;
        max-height: 90dvh; /* dynamic viewport height to avoid address bar jitter */
        animation: none;
        transform: none;
    }
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-body {
    padding: 30px;
    text-align: center;
}

/* Prize modal image styling */
.prize-modal-image {
    width: 100%;
    height: auto;
    max-width: 1200px;
    aspect-ratio: 2 / 1; /* 1200x600 */
    object-fit: cover;
    border-bottom: 1px solid #E8F4FD;
    display: block;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.ticket-info {
    background: #F8FDFF;
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.ticket-info p {
    margin-bottom: 10px;
}

/* Mobile Sticky Button */
.mobile-sticky-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1500;
    display: none;
}

.mobile-sticky-btn button {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-heavy);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 10px 8px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .prize-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-sticky-btn {
        display: block;
    }
    
    .registration-form {
        padding: 30px 20px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .back-home span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-unit {
        min-width: 45px;
        padding: 8px 6px;
    }
    
    .time-value {
        font-size: 1.2rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #1ABC9C;
}

/* Footer */
.giveaway-footer {
    background: #FAFAFB;
    border-top: 1px solid rgba(160, 85, 68, 0.15);
    margin-top: 40px;
}

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

.giveaway-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.giveaway-footer .footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.giveaway-footer .footer-brand-text {
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
}

.giveaway-footer .footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.giveaway-footer .footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 6px 0;
    transition: var(--transition);
}

.giveaway-footer .footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.giveaway-footer .footer-bottom {
    border-top: 1px solid rgba(160, 85, 68, 0.12);
    padding: 14px 20px;
    text-align: center;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .giveaway-footer .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Included grid inside first prize modal */
.included-wrap {
  margin-top: 16px;
}

.included-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 10px 0 4px;
  color: #2c3e50;
}

.included-sub {
  color: #7f8c8d;
  margin-bottom: 16px;
}

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

@media (min-width: 720px) {
  .included-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.included-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: #e5e7eb;
}

.included-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f6ebe7;
  color: #a05544;
  font-size: 18px;
  flex: 0 0 36px;
}

.included-title {
  font-weight: 600;
  color: #2c3e50;
}

.included-desc {
  color: #7f8c8d;
  font-size: 0.95rem;
}

.included-note {
  margin-top: 14px;
  color: #7f8c8d;
  font-size: 0.95rem;
}

/* Grand Giveaway Polish */
/* Hero polish */
.hero-section {
  position: relative;
  background: radial-gradient(900px 420px at 50% -140px, rgba(160,85,68,0.18), transparent),
              linear-gradient(135deg, #2a1f19 0%, #1f1814 45%, #3a2b23 100%);
}

/* Aurora background waves */
.aurora-field { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.aurora-wave { position: absolute; width: 120vw; height: 120vh; top: -10vh; left: -10vw; filter: blur(32px); opacity: 0.35; background: conic-gradient(from 90deg, rgba(255,180,0,0.35), rgba(255,255,255,0.0), rgba(160,85,68,0.35)); animation: auroraDrift 18s linear infinite; }
.aurora-wave:nth-child(2) { animation-duration: 26s; transform: rotate(45deg); opacity: 0.28; }
.aurora-wave:nth-child(3) { animation-duration: 22s; transform: rotate(-30deg); opacity: 0.25; }
@keyframes auroraDrift { 0% { transform: translateX(0) translateY(0) rotate(0deg); } 50% { transform: translateX(6vw) translateY(-4vh) rotate(12deg); } 100% { transform: translateX(0) translateY(0) rotate(0deg); } }


.hero-content {
  text-align: center;
  position: relative;
}

.grand-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #f6ebe7, #ffffff);
  color: #a05544;
  border: 1px solid rgba(160,85,68,0.25);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: var(--shadow-medium);
  margin-bottom: 12px;
  font-weight: 600;
}

.banner-crown { font-size: 18px; }
.banner-text { letter-spacing: 0.3px; }

/* Premium hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #d8a58f, #a05544);
  color: #ffffff;
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: var(--shadow-heavy);
  margin: 4px 0 12px;
}

.hero-badge .badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  font-size: 18px;
}

.hero-badge .badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-badge .badge-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.hero-badge .badge-text span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #a05544, #d8a58f, #6F4E37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineText 4s linear infinite;
  background-size: 200% 100%;
}

@keyframes shineText {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #a05544, #6F4E37);
  border: none;
  color: #ffffff;
  box-shadow: var(--shadow-heavy);
}

.hero-buttons .btn-primary::after {
  content: '';
  position: absolute; left: -50%; top: 0; height: 100%; width: 50%;
  background: linear-gradient(90deg, rgba(255,255,255,0.0), rgba(255,255,255,0.22), rgba(255,255,255,0.0));
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.hero-buttons .btn-primary:hover::after { left: 120%; }

.hero-buttons .btn-secondary {
  background: #ffffff;
  border: 2px solid rgba(160,85,68,0.25);
  color: #a05544;
}

/* Card polish */
.countdown-card, .tickets-card, .price-card {
  border: 1px solid rgba(160,85,68,0.15);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(6px);
}

/* Prize polish */
.prize-section {
  background: linear-gradient(180deg, #2a1f19 0%, #f6ebe7 100%);
}

.prize-table {
  border: 1px solid rgba(160,85,68,0.15);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
}

.prize-row {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid rgba(160,85,68,0.12);
}

.prize-row::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  background: linear-gradient(180deg, #a05544, #6F4E37);
  opacity: 0.6;
}

.prize-row:hover {
  box-shadow: inset 0 0 0 9999px rgba(160,85,68,0.03);
}

.prize-first::before { background: linear-gradient(180deg, #d6a75e, #a05544); }
.prize-second::before { background: linear-gradient(180deg, #4e79a7, #6F4E37); opacity: 0.5; }
.prize-third::before { background: linear-gradient(180deg, #7f8c8d, #6F4E37); opacity: 0.4; }

.prize-amount { font-weight: 700; color: #2c3e50; }
.prize-rank { font-weight: 700; color: #a05544; }

.btn-know-more {
  border-radius: 999px;
  padding: 10px 16px;
  border: 2px solid rgba(160,85,68,0.25);
  background: #ffffff;
  color: #a05544;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-know-more:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); }

/* Section headers */
.section-header h2 {
  font-family: 'Playfair Display', serif;
  display: inline-block;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute; left: 0; bottom: -8px; width: 100px; height: 4px;
  background: linear-gradient(90deg, #a05544, transparent);
  border-radius: 4px;
}

/* Registration polish */
.registration-section {
  background: linear-gradient(180deg, #f3e9e3 0%, #ffffff 100%);
}

.form-container, .registration-form {
  border: 1px solid rgba(160,85,68,0.12);
  box-shadow: var(--shadow-medium);
}

/* Enhanced hero background sparkles */
.hero-background { position: absolute; inset: 0; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.15) 100%); }
.sparkle-container { position: absolute; inset: 0; pointer-events: none; }
.sparkle {
  position: absolute;
  width: 8px; height: 8px;
  background: radial-gradient(circle, #fff, rgba(255,255,255,0.0));
  border-radius: 50%;
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
  animation: floatSparkle 8s linear infinite;
}

.sparkle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 25%; left: 70%; animation-delay: 1.2s; }
.sparkle:nth-child(3) { top: 40%; left: 15%; animation-delay: 2.4s; }
.sparkle:nth-child(4) { top: 55%; left: 80%; animation-delay: 3.6s; }
.sparkle:nth-child(5) { top: 70%; left: 30%; animation-delay: 4.8s; }
.sparkle:nth-child(6) { top: 85%; left: 60%; animation-delay: 6s; }

@keyframes floatSparkle {
  0% { transform: translateY(0) scale(0.9); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
  100% { transform: translateY(0) scale(0.9); opacity: 0.6; }
}

/* Animated luxury frame around hero content */
.hero-content::before {
  content: '';
  position: absolute; inset: -10px; border-radius: 24px;
  padding: 2px; background: conic-gradient(from 0deg, #d8a58f, #a05544, #6F4E37, #d8a58f);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: rotateBorder 12s linear infinite;
  pointer-events: none;
}

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

/* Mixed dark-light theme accents (overrides) */
.giveaway-nav {
  background: rgba(30,25,20,0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(160,85,68,0.25);
}

.giveaway-nav .back-home,
.giveaway-nav .back-home i {
  color: #ffffff;
}

.prize-section .section-header h2 { color: #ffffff; }
.prize-section .section-header p { color: #f0f0f0; }

.prize-table { background: rgba(255,255,255,0.88); }

.highlights-section { padding: 24px 0; }
.highlights-ticker { overflow: hidden; border-radius: 12px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); }
.highlights-ticker .ticker-track { display: flex; gap: 48px; padding: 10px 0; white-space: nowrap; animation: tickerScroll 20s linear infinite; }
.highlights-ticker span { color: #fff; opacity: 0.9; letter-spacing: 0.4px; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.availability-bar { padding: 14px 0; background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12)); border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); }
.availability-wrap { display: flex; align-items: center; gap: 12px; justify-content: space-between; background: rgba(30,25,20,0.5); border: 1px solid rgba(160,85,68,0.25); border-radius: 14px; padding: 10px 14px; }
.availability-pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #2C3E50; border-radius: 999px; padding: 6px 10px; font-weight: 700; box-shadow: 0 8px 18px rgba(0,0,0,0.08); }
.availability-pill .pill-icon { font-size: 1rem; }
.availability-info { display: flex; flex-direction: column; color: #fff; }
.availability-info strong { font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.availability-deadline { opacity: 0.85; font-size: 0.9rem; }
.availability-cta { background: linear-gradient(135deg, #a05544, #6F4E37); color: #fff; border: none; padding: 10px 16px; border-radius: 12px; font-weight: 700; box-shadow: 0 10px 20px rgba(160,85,68,0.25); cursor: pointer; }
.availability-cta:hover { filter: brightness(1.05); }

.value-stack { padding: 70px 0; background: linear-gradient(180deg, #fff 0%, #f6ebe7 100%); }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.value-card { background: #ffffff; border: 1px solid rgba(160,85,68,0.12); border-radius: 16px; padding: 18px; box-shadow: 0 10px 22px rgba(160,85,68,0.10); text-align: left; }
.value-icon { font-size: 1.4rem; }
.value-cta { margin-top: 22px; text-align: center; }
.cta-pulse { position: relative; }
.cta-pulse::after { content: ''; position: absolute; inset: -4px; border-radius: 999px; border: 2px solid rgba(160,85,68,0.35); animation: pulseRing 1.8s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(0.95); opacity: 0.7; } 100% { transform: scale(1.15); opacity: 0; } }

.how-it-works { padding: 60px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.step-card { background: rgba(255,252,247,0.92); border: 1px solid rgba(160,85,68,0.12); border-radius: 16px; padding: 20px; text-align: center; box-shadow: 0 8px 22px rgba(160,85,68,0.10); }
.step-number { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #FFD700, #F4D03F); color: #2C3E50; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 10px; }
.step-title { font-weight: 700; margin-bottom: 6px; }
.step-desc { opacity: 0.9; }

.ticket-showcase { padding: 40px 0; }
.ticket-flip { width: 340px; height: 200px; margin: 0 auto; perspective: 1000px; }
.ticket-face { width: 100%; height: 100%; border-radius: 18px; position: absolute; backface-visibility: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; box-shadow: 0 12px 28px rgba(0,0,0,0.16); }
.ticket-front { background: linear-gradient(135deg, #a05544, #6F4E37); color: #fff; }
.ticket-back { background: #ffffff; transform: rotateY(180deg); }
.ticket-title { font-weight: 700; letter-spacing: 0.3px; }
.ticket-logo { width: 42px; height: 42px; border-radius: 50%; background: #fff; color: #6F4E37; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.ticket-price { font-size: 1.4rem; font-weight: 800; }
.ticket-tag { opacity: 0.9; }
.ticket-benefits { list-style: none; padding: 0 16px; margin: 0; display: grid; gap: 8px; text-align: left; }
.ticket-flip.active .ticket-front { transform: rotateY(180deg); transition: transform 0.6s ease; }
.ticket-flip.active .ticket-back { transform: rotateY(0deg); transition: transform 0.6s ease; }
.ticket-flip .ticket-front, .ticket-flip .ticket-back { transition: transform 0.6s ease; }

.trust-badges { padding: 24px 0 60px; }
.badges-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.badge { background: rgba(255,255,255,0.9); border: 1px solid rgba(0,0,0,0.08); border-radius: 9999px; padding: 12px 16px; text-align: center; font-weight: 600; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }

.sticky-cta { position: fixed; left: 0; right: 0; bottom: 12px; z-index: 2500; display: none; }
.sticky-content { max-width: 960px; margin: 0 auto; background: rgba(255,255,255,0.94); border: 1px solid rgba(160,85,68,0.12); border-radius: 9999px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; box-shadow: 0 10px 28px rgba(160,85,68,0.12); }
.sticky-text { font-weight: 700; display: flex; align-items: center; gap: 8px; }
.sticky-left { font-weight: 700; color: #a05544; }

@media (max-width: 768px) {
    .ticket-flip { width: 92%; height: 190px; }
    .sticky-content { margin: 0 12px; }
}

/* Mobile-first tuning */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; line-height: 1.25; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { display: grid; gap: 10px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; }
  .aurora-wave { filter: blur(22px); opacity: 0.22; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { padding: 16px; }
  .prize-carousel { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .carousel-track { grid-auto-columns: 100%; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; }
  .badges-row { display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
  .badge { flex: 0 0 auto; }
  .sticky-cta { bottom: calc(env(safe-area-inset-bottom, 0px) + 12px); }
  .sticky-content { gap: 10px; }
  .sticky-content .btn-primary { padding: 12px 18px; }
  .faq-section { padding: 40px 0; }
}

.contact-section {
  background: linear-gradient(135deg, #7d4638 0%, #4d3a2c 100%);
}

/* Registration header color override */
.registration-section .section-header h2 {
  color: #6F4E37; /* dark brown */
}

/* Contact header text color override */
.contact-section .section-header h2 {
  color: #ffffff;
}
/* Reasons grid */
.reasons-section { padding: 40px 0; }
.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.reason-card { background: rgba(255,252,247,0.92); border: 1px solid rgba(160,85,68,0.12); border-radius: 16px; padding: 16px; box-shadow: 0 8px 20px rgba(160,85,68,0.08); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.reason-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(160,85,68,0.12); }
.reason-icon { font-size: 1.4rem; }
.reason-title { font-weight: 700; margin-top: 6px; }
.reason-desc { opacity: 0.9; margin-top: 4px; }
@media (max-width: 768px) { .reasons-grid { grid-template-columns: 1fr; } }

/* FAQ Accordion */
.faq-section { padding: 60px 0; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(160,85,68,0.12); border-radius: 12px; background: rgba(255,252,247,0.92); overflow: hidden; box-shadow: 0 6px 16px rgba(160,85,68,0.08); }
.faq-toggle { width: 100%; text-align: left; padding: 14px 16px; background: none; border: none; font-weight: 700; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.faq-content { display: none; padding: 0 16px 14px; color: #2C3E50; }
.faq-item.active .faq-content { display: block; }
.faq-item .arrow { transition: transform 0.2s ease; }
.faq-item.active .arrow { transform: rotate(90deg); }

.participation-plus { padding: 70px 0; background: linear-gradient(180deg, #ffffff 0%, #f6ebe7 100%); }
.comparison-table { border: 1px solid rgba(160,85,68,0.15); border-radius: 16px; overflow: hidden; box-shadow: 0 16px 28px rgba(160,85,68,0.12); background: #fff; }
.comp-head, .comp-foot { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0; align-items: center; padding: 14px 16px; background: linear-gradient(135deg, #a05544, #6F4E37); color: #fff; }
.comp-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0; align-items: center; padding: 14px 16px; border-top: 1px solid rgba(160,85,68,0.12); position: relative; }
.comp-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: linear-gradient(180deg, #a05544, #6F4E37); opacity: 0.5; }
.comp-item { font-weight: 700; color: #2c3e50; }
.comp-cost { color: #7f8c8d; }
.comp-badge { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; background: rgba(160,85,68,0.1); color: #a05544; font-weight: 700; border: 1px solid rgba(160,85,68,0.25); }
.comp-total { font-weight: 800; }
.comp-worth { font-weight: 800; font-family: 'Playfair Display', serif; }
.comp-entry-cta { text-align: right; }

.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 22px; }
.trust-card { background: #ffffff; border: 1px solid rgba(160,85,68,0.12); border-radius: 14px; padding: 16px; box-shadow: 0 12px 28px rgba(160,85,68,0.10); text-align: center; }
.trust-icon { font-size: 1.6rem; }
.trust-title { font-weight: 800; margin-top: 8px; }
.trust-desc { opacity: 0.9; }
.value-note { margin-top: 16px; color: #7f8c8d; text-align: center; }

@media (max-width: 768px) {
  .availability-wrap { flex-wrap: wrap; gap: 10px; }
  .availability-info { font-size: 0.95rem; }
  .availability-cta { width: 100%; }
  .comp-head, .comp-row, .comp-foot { grid-template-columns: 1fr; text-align: left; }
  .comp-entry-cta { text-align: left; margin-top: 8px; }
}

.testimonials-section { padding: 70px 0; background: linear-gradient(180deg, #fff 0%, #f8f4f2 100%); }
.testimonial-carousel { position: relative; }
.testimonial-track { display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth; }
.testimonial-track { -ms-overflow-style: none; scrollbar-width: none; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track .testimonial-card { flex: 0 0 calc(100% / var(--t-cards-per-view, 1)); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; }
.t-prev, .t-next { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(160,85,68,0.25); background: #fff; color: #a05544; font-weight: 800; cursor: pointer; box-shadow: 0 6px 16px rgba(160,85,68,0.12); }
.t-prev:hover, .t-next:hover { filter: brightness(1.05); }
.t-dots { display: inline-flex; gap: 6px; }
.t-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(160,85,68,0.25); }
.t-dots .dot.active { background: #a05544; }
.testimonial-card { display: flex; gap: 12px; align-items: flex-start; background: #ffffff; border: 1px solid rgba(160,85,68,0.12); border-radius: 16px; padding: 16px; box-shadow: 0 12px 26px rgba(160,85,68,0.10); position: relative; }
.testimonial-card::after { content: ''; position: absolute; inset: 0; border-radius: 16px; padding: 1px; background: conic-gradient(from 0deg, #d8a58f, #a05544, #6F4E37, #d8a58f); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.08; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #f6ebe7, #ffffff); color: #a05544; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; box-shadow: 0 6px 16px rgba(0,0,0,0.08); border: 2px solid rgba(160,85,68,0.25); }
.t-content { flex: 1; }
.t-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.t-name { font-weight: 800; color: #2c3e50; }
.t-verified { display: inline-flex; align-items: center; padding: 4px 8px; border-radius: 999px; background: rgba(160,85,68,0.12); color: #a05544; font-weight: 700; font-size: 0.85rem; border: 1px solid rgba(160,85,68,0.22); }
.t-rating { color: #FFD700; letter-spacing: 2px; margin: 6px 0; font-size: 1rem; }
.t-quote { opacity: 0.95; }
.t-meta { margin-top: 8px; font-size: 0.85rem; color: #7f8c8d; }

@media (min-width: 860px) {
  .testimonial-track .testimonial-card { flex-basis: calc(100% / var(--t-cards-per-view, 2)); }
}