/* Custom Styles for TidalHaven - Free Social Online Casino */

:root {
  --primary-color: #0d5943;
  --secondary-color: #e91e8c;
  --accent-color: #14f0c8;
  --accent-light: #7df0df;
  --dark-bg: #0a1628;
  --darker-bg: #060f1a;
  --light-bg: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --card-bg: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Added decorative background patterns */
body::before {
  content: "";
  position: fixed;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(20, 240, 200, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  bottom: -50%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Improved Header & Navigation with text logo */
.site-header {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar {
  background-color: transparent !important;
  padding: 0.5rem 0;
}

.navbar-item {
  color: #e2e8f0 !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.navbar-item:hover::after,
.navbar-item.is-active::after {
  width: 80%;
}

.navbar-item:hover,
.navbar-item.is-active {
  color: var(--accent-color) !important;
  background-color: transparent !important;
}

/* Redesigned text logo with gradient and decorative elements */
.logo-text {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 50%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding: 0.25rem 0;
}

.logo-text::before {
  content: "◆";
  position: absolute;
  left: -1.5rem;
  color: var(--accent-color);
  font-size: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.logo-text::after {
  content: "◆";
  position: absolute;
  right: -1.5rem;
  color: var(--secondary-color);
  font-size: 1rem;
  animation: pulse 2s ease-in-out infinite 1s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

.navbar-burger {
  color: var(--accent-color);
}

/* Enhanced Hero Section with animated decorative elements */
.hero-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.hero-gradient::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(20, 240, 200, 0.15) 0%, transparent 60%);
  animation: float 20s ease-in-out infinite;
}

.hero-gradient::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.15) 0%, transparent 60%);
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

.hero-body {
  position: relative;
  z-index: 1;
}

.hero .title {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero .subtitle {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Improved CTA button with glow effect */
.cta-button {
  font-weight: 600;
  padding: 1.5rem 3.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--secondary-color), #c71676);
  border: none;
  box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.2s ease-out;
}

.cta-button::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 ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(233, 30, 140, 0.5);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  padding: 4rem 0;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

/* Enhanced Feature Cards with hover effects and decorative elements */
.feature-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 240, 200, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(20, 240, 200, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.icon-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.icon-large {
  font-size: 3.5rem;
  display: inline-block;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Improved Popular Games Section */
.popular-games-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  padding: 5rem 0;
  position: relative;
}

.popular-games-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="60" height="60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
}

.game-preview-card,
.game-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.game-preview-card::before,
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.game-preview-card:hover::before,
.game-card:hover::before {
  opacity: 1;
}

.game-preview-card:hover,
.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.game-preview-card img,
.game-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-preview-card:hover img,
.game-card:hover img {
  transform: scale(1.1);
}

.game-preview-card h3,
.game-preview-card p,
.game-content {
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.game-preview-card h3 {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-preview-card p {
  padding-bottom: 1.5rem;
}

.game-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-description {
  flex-grow: 1;
  margin-bottom: 1rem;
}

/* Enhanced Game Modal */
.modal {
  z-index: 9999;
}

.modal-background {
  background-color: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(8px);
}

.game-modal-content {
  width: 90vw;
  max-width: 1400px;
  height: 85vh;
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.game-iframe-container {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-iframe-container iframe {
  width: 100%;
  height: 100%;
}

.modal-close {
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: var(--accent-color);
  transform: rotate(90deg);
}

/* Enhanced Event Cards */
.event-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.event-card:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.event-type-card {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.event-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(20, 240, 200, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.event-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.event-icon {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.event-list {
  list-style: none;
  margin-top: 2rem;
}

.event-list li {
  padding: 1rem;
  border-bottom: 1px solid rgba(20, 240, 200, 0.1);
  transition: all 0.3s ease;
}

.event-list li:hover {
  padding-left: 1.5rem;
  background: rgba(20, 240, 200, 0.05);
  border-radius: 8px;
}

.event-list li:last-child {
  border-bottom: none;
}

/* Upcoming Events */
.upcoming-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  padding: 5rem 0;
  position: relative;
}

.upcoming-event-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.upcoming-event-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color), var(--secondary-color));
}

.upcoming-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.event-date {
  background: linear-gradient(135deg, var(--secondary-color), #c71676);
  color: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(233, 30, 140, 0.3);
}

.date-month {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.date-day {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 0.25rem;
}

.event-details {
  flex-grow: 1;
}

/* Enhanced Step Cards */
.step-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 20px rgba(20, 240, 200, 0.3);
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  opacity: 0.3;
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Mission & Vision */
.mission-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: "◆";
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 8rem;
  color: rgba(20, 240, 200, 0.05);
  animation: rotate360 20s linear infinite;
}

.mission-section::after {
  content: "◆";
  position: absolute;
  bottom: 10%;
  right: 5%;
  font-size: 10rem;
  color: rgba(233, 30, 140, 0.05);
  animation: rotate360 25s linear infinite reverse;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.mission-card,
.vision-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  padding: 3.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
}

/* Enhanced Team Cards */
.team-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--accent-color);
  box-shadow: 0 8px 25px rgba(20, 240, 200, 0.3);
  transition: all 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.1);
  border-color: var(--secondary-color);
}

/* Difference Section */
.different-section {
  background-color: #f1f5f9;
  position: relative;
}

.difference-item {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border-top: 3px solid var(--accent-color);
}

.difference-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-top-color: var(--secondary-color);
}

/* Enhanced FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-item:hover {
  border-color: rgba(20, 240, 200, 0.3);
}

.faq-item.active {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.faq-question {
  width: 100%;
  padding: 1.75rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.faq-question:hover {
  background: rgba(20, 240, 200, 0.05);
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.75rem;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 1.75rem 1.75rem;
}

/* Contact Page */
.contact-info-box,
.contact-form-box {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-details {
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(20, 240, 200, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  padding-left: 0.5rem;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  font-size: 2.5rem;
  min-width: 60px;
  color: var(--accent-color);
}

.contact-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.faq-link-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Enhanced Blog Cards */
.featured-article {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.featured-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.featured-article img {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.blog-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
  flex-grow: 1;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "✉";
  position: absolute;
  top: 50%;
  left: 10%;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.02);
  transform: translateY(-50%);
}

.newsletter-form {
  max-width: 700px;
  margin: 2.5rem auto 0;
}

.newsletter-form .input {
  border-radius: 50px 0 0 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.newsletter-form .button {
  border-radius: 0 50px 50px 0;
  padding: 0 3rem;
}

/* Info Section */
.info-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: float 15s ease-in-out infinite;
}

/* Thank You Page */
.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-icon {
  font-size: 6rem;
  display: block;
  margin-bottom: 2rem;
  animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Completely redesigned Cookie Consent Banner - no longer blocks content */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 420px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  color: #fff;
  padding: 1.75rem;
  z-index: 99999;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  display: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 240, 200, 0.2);
  animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cookie-consent.show {
  display: block;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e2e8f0;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-buttons button {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-buttons .button.is-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border: none;
  box-shadow: 0 5px 15px rgba(20, 240, 200, 0.3);
}

.cookie-buttons .button.is-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 240, 200, 0.4);
}

.cookie-buttons .button.is-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-buttons .button.is-light:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  color: #cbd5e1;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer .title {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "▸";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 15px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.disclaimer {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 0.75rem;
}

/* Enhanced Buttons */
.button.is-primary {
  background: linear-gradient(135deg, var(--secondary-color), #c71676);
  border-color: transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(233, 30, 140, 0.3);
}

.button.is-primary:hover {
  background: linear-gradient(135deg, #c71676, var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

.button.is-outlined {
  transition: all 0.3s ease;
}

.button.is-outlined:hover {
  transform: translateY(-2px);
}

/* Notification */
.notification {
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
}

/* Tags */
.tag {
  border-radius: 8px;
  font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hero.is-large .hero-body {
    padding: 4rem 1.5rem;
  }

  .title.is-1 {
    font-size: 2.25rem !important;
  }

  .title.is-2 {
    font-size: 1.85rem !important;
  }

  .subtitle.is-4 {
    font-size: 1.15rem !important;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .logo-text::before,
  .logo-text::after {
    font-size: 0.75rem;
    left: -1.2rem;
    right: -1.2rem;
  }

  .cookie-consent {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }

  .upcoming-event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    margin: 0 auto;
  }

  .game-modal-content {
    width: 95vw;
    height: 70vh;
  }

  .navbar-menu {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  }

  .cta-button {
    padding: 1.25rem 2.5rem;
  }
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  }
}

/* Utility Classes */
.mt-5 {
  margin-top: 3rem !important;
}

.mb-6 {
  margin-bottom: 4rem !important;
}

/* Image Lazy Loading */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Selection */
::selection {
  background: var(--accent-color);
  color: var(--dark-bg);
}

::-moz-selection {
  background: var(--accent-color);
  color: var(--dark-bg);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-color), var(--secondary-color));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
}
