/* Custom Styles for NivalExo - Free Social Online Casino */

/* Global Variables */
:root {
  --primary-color: #d946a6;
  --primary-dark: #a8327a;
  --primary-light: #ec4899;
  --secondary-color: #f472b6;
  --accent-gold: #fbbf24;
  --dark-bg: #0f0818;
  --dark-secondary: #1e1028;
  --dark-tertiary: #2d1640;
  --text-light: #ffffff;
  --text-gray: #e5e7eb;
  --text-muted: #9ca3af;
  --gradient-1: linear-gradient(135deg, #0f0818 0%, #1e1028 50%, #2d1640 100%);
  --gradient-2: linear-gradient(135deg, #d946a6 0%, #a8327a 100%);
  --gradient-3: linear-gradient(135deg, rgba(217, 70, 166, 0.1) 0%, rgba(168, 50, 122, 0.05) 100%);
}

/* Base Styles */
* {
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  background: var(--dark-bg);
  color: var(--text-gray);
}

/* Enhanced Navbar with text logo */
.custom-navbar {
  background: rgba(15, 8, 24, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(217, 70, 166, 0.15);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(217, 70, 166, 0.1);
}

.navbar-burger span {
  background-color: var(--text-light);
}

.navbar-item {
  color: var(--text-light) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-item:hover {
  background-color: rgba(217, 70, 166, 0.1) !important;
  color: var(--secondary-color) !important;
}

.navbar-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-item:hover::after {
  width: 80%;
}

/* Text logo styling */
.logo-item {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  padding: 0.5rem 1rem !important;
}

.logo-item:hover {
  background: linear-gradient(135deg, #ec4899 0%, #d946a6 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Enhanced Hero with animated gradient background */
.hero-gradient {
  background: linear-gradient(135deg, #0f0818 0%, #2d1640 50%, #4a1f5e 100%);
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(217, 70, 166, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(244, 114, 182, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 30%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(5%, 5%) rotate(5deg);
  }
  66% {
    transform: translate(-5%, 5%) rotate(-5deg);
  }
}

.hero-gradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--dark-bg), transparent);
}

.hero-body {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem;
}

.hero.is-large .hero-body {
  padding: 9rem 1.5rem;
}

.hero.is-medium .hero-body {
  padding: 7rem 1.5rem;
}

/* Enhanced Buttons with glow effect */
.button.is-primary {
  background: var(--gradient-2);
  border: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(217, 70, 166, 0.4), 0 0 0 0 rgba(217, 70, 166, 0.4);
  position: relative;
  overflow: hidden;
}

.button.is-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.button.is-primary:hover::before {
  width: 300px;
  height: 300px;
}

.button.is-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(217, 70, 166, 0.6), 0 0 30px rgba(217, 70, 166, 0.4);
}

.button.is-primary:active {
  transform: translateY(-1px);
}

.cta-button {
  font-size: 1.4rem;
  padding: 1.75rem 3.5rem;
  border-radius: 50px;
}

/* Enhanced Feature Boxes with hover animations */
.feature-box {
  background: var(--gradient-1);
  border: 2px solid rgba(217, 70, 166, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(217, 70, 166, 0.4), 0 0 50px rgba(217, 70, 166, 0.2);
}

.feature-box:hover::before {
  opacity: 1;
}

.icon-wrapper {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.feature-box:hover .icon-wrapper {
  color: var(--primary-light);
  transform: scale(1.1) rotate(5deg);
}

.feature-box .title,
.feature-box p {
  position: relative;
  z-index: 1;
}

/* Enhanced Games Section with gradient background */
.games-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, var(--dark-bg) 100%);
  position: relative;
}

.games-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(217, 70, 166, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Enhanced Game Cards with 3D effect */
.game-card {
  background: var(--dark-secondary);
  border: 2px solid rgba(217, 70, 166, 0.2);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  overflow: hidden;
  position: relative;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-3);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(217, 70, 166, 0.5), 0 0 40px rgba(217, 70, 166, 0.3);
}

.game-card:hover::before {
  opacity: 1;
}

.game-card .card-image {
  position: relative;
  overflow: hidden;
}

.game-card .card-image img {
  transition: transform 0.6s ease;
}

.game-card:hover .card-image img {
  transform: scale(1.1);
}

.game-card .card-content {
  background: linear-gradient(to bottom, rgba(30, 16, 40, 0.9), var(--dark-bg));
  position: relative;
  z-index: 2;
}

/* Event Boxes with better styling */
.event-box {
  background: var(--gradient-1);
  border: 2px solid rgba(244, 114, 182, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.event-box::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(217, 70, 166, 0.1) 0%, transparent 70%);
  transition: all 0.6s ease;
}

.event-box:hover {
  border-color: var(--secondary-color);
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(244, 114, 182, 0.3);
}

.event-box:hover::after {
  top: -20%;
  right: -20%;
}

/* Event Cards */
.event-card {
  background: var(--dark-secondary);
  border: 2px solid rgba(217, 70, 166, 0.25);
  border-radius: 20px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.event-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(217, 70, 166, 0.4);
  transform: translateY(-5px);
}

.event-date {
  background: var(--gradient-2);
  padding: 1.25rem;
  border-radius: 15px;
  text-align: center;
  color: white;
  margin-bottom: 1rem;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(217, 70, 166, 0.4);
}

.date-day {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.9;
}

/* Event Categories Section */
.event-categories-section {
  background: linear-gradient(135deg, #2d1640 0%, #1e1028 100%);
  position: relative;
}

.category-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(244, 114, 182, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
}

.category-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.event-list {
  list-style: none;
  margin-top: 1.5rem;
}

.event-list li {
  padding: 0.75rem 0;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(244, 114, 182, 0.1);
}

.event-list li:last-child {
  border-bottom: none;
}

.event-list li i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
}

/* Enhanced Step Items */
.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.step-number {
  background: var(--gradient-2);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(217, 70, 166, 0.4);
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(217, 70, 166, 0.6);
}

.rules-section {
  background: linear-gradient(135deg, #4a1f5e 0%, var(--dark-secondary) 100%);
}

/* Enhanced CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #4a1f5e 50%, var(--dark-tertiary) 100%);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

/* Enhanced Footer */
.custom-footer {
  background: linear-gradient(to bottom, var(--dark-bg), #000000);
  color: var(--text-gray);
  padding: 4rem 1.5rem 2rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(217, 70, 166, 0.2);
  position: relative;
}

.custom-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-2);
  opacity: 0.5;
}

.custom-footer a {
  color: var(--text-gray);
  transition: all 0.3s ease;
  position: relative;
}

.custom-footer a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.custom-footer ul {
  list-style: none;
  margin: 0;
}

.custom-footer ul li {
  margin-bottom: 0.75rem;
}

.disclaimer {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Fixed Cookie Consent with better UX */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 8, 24, 0.98);
  backdrop-filter: blur(15px);
  border-top: 2px solid var(--primary-color);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.7);
  display: none;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-light);
}

.cookie-content p {
  flex: 1;
  min-width: 250px;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons .button {
  min-width: 120px;
}

/* Mission & Vision Boxes */
.mission-section {
  background: linear-gradient(135deg, #faf5ff 0%, #fce7f3 100%);
}

.mission-box,
.vision-box {
  background: white;
  border: 2px solid rgba(217, 70, 166, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(217, 70, 166, 0.1);
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(217, 70, 166, 0.2);
  border-color: var(--primary-color);
}

.mission-box .icon-wrapper,
.vision-box .icon-wrapper {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Enhanced Team Cards */
.team-card {
  background: var(--dark-secondary);
  border: 2px solid rgba(217, 70, 166, 0.2);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-8px) rotate(1deg);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(217, 70, 166, 0.5);
}

.team-card .card-image {
  overflow: hidden;
  position: relative;
}

.team-card .card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .card-image::after {
  opacity: 0.2;
}

.team-card .card-image img {
  transition: transform 0.6s ease;
}

.team-card:hover .card-image img {
  transform: scale(1.15);
}

.team-card .card-content {
  background: linear-gradient(to bottom, rgba(30, 16, 40, 0.9), var(--dark-bg));
  color: var(--text-light);
}

/* Different Section */
.different-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #4a1f5e 50%, var(--dark-tertiary) 100%);
  position: relative;
}

.different-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
}

.difference-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(244, 114, 182, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  color: var(--text-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.difference-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  border-radius: 50%;
}

.difference-box:hover::before {
  width: 300px;
  height: 300px;
}

.difference-box:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(244, 114, 182, 0.3);
}

.difference-box i {
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.difference-box:hover i {
  color: var(--accent-gold);
  transform: scale(1.1) rotate(5deg);
}

.difference-box .title,
.difference-box p {
  position: relative;
  z-index: 1;
}

/* Enhanced Game Modal */
.game-modal-content {
  width: 90%;
  max-width: 1400px;
  height: 85vh;
  background: var(--dark-bg);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
}

.game-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-close {
  background: var(--primary-color) !important;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--primary-dark) !important;
  transform: rotate(90deg) scale(1.1);
}

/* Why Play Section */
.why-play-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #4a1f5e 50%, var(--dark-tertiary) 100%);
  position: relative;
  overflow: hidden;
}

.why-play-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
}

/* Enhanced FAQ Cards with smooth accordion */
.faq-card {
  background: var(--dark-secondary);
  border: 2px solid rgba(217, 70, 166, 0.2);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  overflow: hidden;
}

.faq-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(217, 70, 166, 0.3);
}

.faq-card .card-header {
  background: linear-gradient(135deg, rgba(30, 16, 40, 0.8), rgba(45, 22, 64, 0.8));
  cursor: pointer;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.faq-card .card-header:hover {
  background: rgba(217, 70, 166, 0.15);
}

.faq-card .card-header-title {
  color: var(--text-light);
  font-weight: 600;
}

.faq-card .card-header-icon {
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-card.is-active .card-header-icon {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
  background: rgba(45, 27, 61, 0.4);
  color: var(--text-gray);
  padding: 0 1.75rem;
}

.faq-content.is-active {
  max-height: 1000px;
  padding: 1.75rem;
}

/* Enhanced Contact Boxes */
.contact-box {
  background: var(--gradient-1);
  border: 2px solid rgba(217, 70, 166, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-box::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(217, 70, 166, 0.1) 0%, transparent 50%);
  transition: all 0.8s ease;
}

.contact-box:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(217, 70, 166, 0.4);
}

.contact-box:hover::after {
  top: -50%;
  left: -50%;
}

.contact-box .icon-wrapper {
  position: relative;
  z-index: 1;
}

.contact-box .title,
.contact-box .content,
.contact-box .button,
.address {
  position: relative;
  z-index: 1;
}

.address {
  margin-top: 1.25rem;
  line-height: 1.9;
  color: var(--text-gray);
}

/* Form Section */
.form-section {
  background: linear-gradient(135deg, #fafafa 0%, #f3f4f6 100%);
}

.form-section .box {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(217, 70, 166, 0.1);
}

/* Hours Box */
.hours-box {
  background: var(--gradient-1);
  border: 2px solid rgba(217, 70, 166, 0.25);
  border-radius: 20px;
  color: var(--text-light);
  padding: 2.5rem;
}

.hours-box .table {
  background: transparent;
  color: var(--text-light);
}

.hours-box .table td {
  border-color: rgba(217, 70, 166, 0.2);
  color: var(--text-gray);
  padding: 1rem;
}

.hours-box .table tbody tr:hover {
  background: rgba(217, 70, 166, 0.05);
}

/* Enhanced Blog Cards */
.featured-article {
  background: var(--dark-secondary);
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(217, 70, 166, 0.4);
  transition: all 0.4s ease;
}

.featured-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(217, 70, 166, 0.6);
}

.featured-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.blog-card {
  background: var(--dark-secondary);
  border: 2px solid rgba(217, 70, 166, 0.25);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(217, 70, 166, 0.4);
}

.blog-card .card-image,
.featured-article .card-image {
  overflow: hidden;
}

.blog-card .card-image img,
.featured-article .card-image img {
  transition: transform 0.6s ease;
}

.blog-card:hover .card-image img,
.featured-article:hover .card-image img {
  transform: scale(1.1);
}

.blog-card .card-content,
.featured-article .card-content {
  background: linear-gradient(to bottom, rgba(30, 16, 40, 0.95), var(--dark-bg));
  color: var(--text-light);
}

.blog-card .content p,
.featured-article .content p {
  color: var(--text-gray);
}

/* Thank You Box */
.thank-you-box {
  background: white;
  border-radius: 25px;
  padding: 4rem;
  box-shadow: 0 30px 80px rgba(217, 70, 166, 0.3);
  border: 2px solid rgba(217, 70, 166, 0.2);
}

/* Enhanced Tags */
.tag {
  border-radius: 20px;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.tag.is-primary {
  background: var(--gradient-2);
  box-shadow: 0 4px 15px rgba(217, 70, 166, 0.3);
}

.tag.is-warning {
  background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

/* Responsive */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    background: rgba(15, 8, 24, 0.98);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(217, 70, 166, 0.2);
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-body {
    padding: 4rem 1.5rem;
  }

  .hero.is-large .hero-body {
    padding: 6rem 1.5rem;
  }

  .cta-button {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
  }

  .logo-item {
    font-size: 1.5rem !important;
  }
}

@media screen and (max-width: 768px) {
  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .game-modal-content {
    width: 95%;
    height: 75vh;
  }

  .logo-item {
    font-size: 1.35rem !important;
  }

  .feature-box,
  .contact-box,
  .difference-box {
    padding: 2rem;
  }
}

/* Utilities */
.has-text-white {
  color: var(--text-dark) !important;
}

.box {
  background: white;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--primary-color);
  color: white;
}

::-moz-selection {
  background: var(--primary-color);
  color: white;
}

/* Loading animation for images */
img {
  image-rendering: -webkit-optimize-contrast;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ec4899 0%, #d946a6 100%);
}
