/* ArenaFunWorld.com - Unique Modern Design for Norway */
/* Color Palette: Navy Blue (#1A3A5C), Coral (#FF6B6B), Light Gray (#F4F6F8), Teal (#26A69A), Warm Yellow (#FFC857) */

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.7;
  color: #1A3A5C;
  background: #F4F6F8;
  overflow-x: hidden;
}

/* Age Notice Bar */
.arenafunworld-age-bar {
  background: linear-gradient(90deg, #FF6B6B 0%, #FF8787 100%);
  color: #FFFFFF;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
}

.arenafunworld-age-bar strong {
  font-weight: 800;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Navigation */
.arenafunworld-nav {
  background: #FFFFFF;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(26, 58, 92, 0.12);
}

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

.arenafunworld-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.arenafunworld-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.arenafunworld-logo-img {
  height: 45px;
  width: auto;
}

.arenafunworld-logo-text {
  font-size: 26px;
  font-weight: 900;
  color: #1A3A5C;
  letter-spacing: -0.5px;
}

.arenafunworld-logo-text span {
  color: #26A69A;
}

.arenafunworld-nav-toggle {
  display: none;
  background: #FF6B6B;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(255, 107, 107, 0.35);
}

.arenafunworld-nav-toggle:hover {
  background: #FF8787;
  transform: scale(1.05);
}

.arenafunworld-nav-toggle-line {
  width: 24px;
  height: 3px;
  background: #FFFFFF;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.arenafunworld-nav-list {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
}

.arenafunworld-nav-list li a {
  text-decoration: none;
  color: #1A3A5C;
  padding: 12px 20px;
  display: block;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.arenafunworld-nav-list li a:hover,
.arenafunworld-nav-list li a.arenafunworld-active {
  color: #26A69A;
  background: rgba(38, 166, 154, 0.1);
}

.arenafunworld-nav-cta-btn {
  background: linear-gradient(135deg, #26A69A 0%, #2DBFAE 100%);
  color: #FFFFFF !important;
  padding: 13px 26px !important;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(38, 166, 154, 0.35);
  transition: all 0.3s ease;
  margin-left: 10px;
}

.arenafunworld-nav-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(38, 166, 154, 0.45);
  background: linear-gradient(135deg, #2DBFAE 0%, #26A69A 100%) !important;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .arenafunworld-nav-toggle {
    display: flex;
  }

  .arenafunworld-nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background: #FFFFFF;
    flex-direction: column;
    padding: 90px 24px 24px;
    transition: right 0.4s ease;
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.15);
    align-items: stretch;
    gap: 6px;
    overflow-y: auto;
  }

  .arenafunworld-nav-list.active {
    right: 0;
  }

  .arenafunworld-nav-list li a {
    padding: 16px 20px;
    font-size: 16px;
  }

  .arenafunworld-nav-cta-btn {
    margin-left: 0 !important;
    text-align: center;
  }
}

/* Hero Section */
.arenafunworld-hero {
  background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.arenafunworld-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(38, 166, 154, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%);
  opacity: 0.6;
}

.arenafunworld-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.arenafunworld-hero-badge {
  display: inline-block;
  background: rgba(255, 200, 87, 0.25);
  color: #FFC857;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
  border: 2px solid rgba(255, 200, 87, 0.4);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.arenafunworld-hero-badge i {
  margin-right: 8px;
}

.arenafunworld-hero h1 {
  font-size: 62px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 26px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.arenafunworld-hero-accent {
  color: #FFC857;
  position: relative;
  display: inline-block;
}

.arenafunworld-hero-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B6B, #FFC857);
  border-radius: 2px;
}

.arenafunworld-hero-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 40px;
  line-height: 1.75;
}

.arenafunworld-hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
  color: #FFFFFF;
  padding: 18px 42px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.arenafunworld-hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.5);
}

.arenafunworld-hero-btn i {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .arenafunworld-hero {
    padding: 70px 0;
  }

  .arenafunworld-hero h1 {
    font-size: 42px;
  }

  .arenafunworld-hero-desc {
    font-size: 17px;
  }
}

/* Section Styles */
.arenafunworld-section {
  padding: 80px 0;
}

.arenafunworld-section-light {
  background: #FFFFFF;
}

.arenafunworld-section-soft {
  background: #F4F6F8;
}

.arenafunworld-section-dark {
  background: #1A3A5C;
  color: #FFFFFF;
}

.arenafunworld-section-coral {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
  color: #FFFFFF;
}

.arenafunworld-section-title-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.arenafunworld-section-title-wrap h2 {
  font-size: 46px;
  font-weight: 900;
  color: inherit;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.arenafunworld-section-subtitle {
  font-size: 19px;
  color: inherit;
  opacity: 0.88;
  max-width: 760px;
  margin: 0 auto;
}

/* Feature Cards Grid */
.arenafunworld-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.arenafunworld-cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.arenafunworld-cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.arenafunworld-feature-box {
  background: #FFFFFF;
  padding: 38px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(26, 58, 92, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.arenafunworld-feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(38, 166, 154, 0.2);
  border-color: rgba(38, 166, 154, 0.25);
}

.arenafunworld-section-dark .arenafunworld-feature-box {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.arenafunworld-section-dark .arenafunworld-feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 200, 87, 0.4);
}

.arenafunworld-section-coral .arenafunworld-feature-box {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.arenafunworld-section-coral .arenafunworld-feature-box:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 200, 87, 0.5);
}

.arenafunworld-feature-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #26A69A 0%, #2DBFAE 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 16px rgba(38, 166, 154, 0.35);
}

.arenafunworld-feature-icon-wrap i {
  font-size: 32px;
  color: #FFFFFF;
}

.arenafunworld-feature-box h3 {
  font-size: 23px;
  font-weight: 800;
  color: #1A3A5C;
  margin-bottom: 14px;
}

.arenafunworld-section-dark .arenafunworld-feature-box h3,
.arenafunworld-section-coral .arenafunworld-feature-box h3 {
  color: #FFFFFF;
}

.arenafunworld-feature-box p {
  font-size: 16px;
  line-height: 1.75;
  color: #5A7082;
}

.arenafunworld-section-dark .arenafunworld-feature-box p,
.arenafunworld-section-coral .arenafunworld-feature-box p {
  color: rgba(255, 255, 255, 0.88);
}

/* Stats Section */
.arenafunworld-stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-top: 48px;
}

.arenafunworld-stat-item {
  text-align: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.arenafunworld-stat-item:hover {
  transform: scale(1.05);
  border-color: rgba(255, 200, 87, 0.5);
}

.arenafunworld-stat-number {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: #FFC857;
  margin-bottom: 10px;
  line-height: 1;
}

.arenafunworld-stat-text {
  display: block;
  font-size: 17px;
  color: #FFFFFF;
  font-weight: 600;
}

/* Games Container */
.arenafunworld-games-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}

.arenafunworld-game-box {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26, 58, 92, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.arenafunworld-game-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(255, 107, 107, 0.2);
  border-color: rgba(255, 107, 107, 0.35);
}

.arenafunworld-game-img-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #E8E8E8;
}

.arenafunworld-game-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arenafunworld-game-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
  color: #FFFFFF;
  padding: 7px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.arenafunworld-game-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.arenafunworld-game-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1A3A5C;
  margin-bottom: 14px;
}

.arenafunworld-game-content p {
  font-size: 15px;
  color: #5A7082;
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}

.arenafunworld-game-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(26, 58, 92, 0.12);
}

.arenafunworld-game-stats span {
  font-size: 14px;
  color: #5A7082;
  font-weight: 600;
}

.arenafunworld-game-stats i {
  margin-right: 6px;
  color: #FF6B6B;
}

.arenafunworld-launch-btn {
  width: 100%;
  background: linear-gradient(135deg, #26A69A 0%, #2DBFAE 100%);
  color: #FFFFFF;
  border: none;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(38, 166, 154, 0.35);
}

.arenafunworld-launch-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(38, 166, 154, 0.45);
}

.arenafunworld-launch-btn i {
  margin-right: 8px;
}

/* Page Top */
.arenafunworld-page-top {
  background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
  padding: 70px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.arenafunworld-page-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 107, 107, 0.15) 0%, transparent 60%);
  opacity: 0.5;
}

.arenafunworld-page-icon-container {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.45);
  position: relative;
  z-index: 1;
}

.arenafunworld-page-icon-container i {
  font-size: 40px;
  color: #FFFFFF;
}

.arenafunworld-page-top h1 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.arenafunworld-page-subtitle {
  font-size: 19px;
  opacity: 0.92;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .arenafunworld-page-top h1 {
    font-size: 36px;
  }

  .arenafunworld-page-subtitle {
    font-size: 17px;
  }
}

/* CTA Box */
.arenafunworld-cta-box {
  background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
  padding: 56px 44px;
  border-radius: 12px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 8px 28px rgba(26, 58, 92, 0.35);
  border: 3px solid rgba(38, 166, 154, 0.3);
}

.arenafunworld-cta-box h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.arenafunworld-cta-box p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 32px;
  opacity: 0.95;
}

.arenafunworld-alert-box {
  background: rgba(255, 200, 87, 0.18);
  border: 2px solid rgba(255, 200, 87, 0.35);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  gap: 16px;
  text-align: left;
  align-items: flex-start;
}

.arenafunworld-alert-box i {
  font-size: 24px;
  color: #FFC857;
  flex-shrink: 0;
  margin-top: 3px;
}

.arenafunworld-alert-box strong {
  color: #FFC857;
}

.arenafunworld-btn-container {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.arenafunworld-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
}

.arenafunworld-btn i {
  margin-right: 10px;
}

.arenafunworld-btn-primary {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.45);
}

.arenafunworld-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.55);
}

.arenafunworld-btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.arenafunworld-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}

.arenafunworld-text-center {
  text-align: center;
}

.arenafunworld-mt-4 {
  margin-top: 36px;
}

/* Contact Form */
.arenafunworld-contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

@media (max-width: 968px) {
  .arenafunworld-contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.arenafunworld-contact-panel {
  background: #FFFFFF;
  padding: 40px 36px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(26, 58, 92, 0.1);
  border: 2px solid rgba(38, 166, 154, 0.15);
}

.arenafunworld-contact-panel h2 {
  font-size: 28px;
  font-weight: 900;
  color: #1A3A5C;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.arenafunworld-contact-panel h2 i {
  color: #FF6B6B;
}

.arenafunworld-contact-panel > p {
  color: #5A7082;
  margin-bottom: 28px;
  font-size: 16px;
}

.arenafunworld-form-group {
  margin-bottom: 22px;
}

.arenafunworld-form-label-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #1A3A5C;
  margin-bottom: 10px;
  font-size: 15px;
}

.arenafunworld-form-label-wrap i {
  color: #26A69A;
  font-size: 15px;
}

.arenafunworld-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(26, 58, 92, 0.18);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #F8F9FA;
  color: #1A3A5C;
}

.arenafunworld-input:focus {
  outline: none;
  border-color: #26A69A;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(38, 166, 154, 0.12);
}

.arenafunworld-textarea {
  resize: vertical;
  min-height: 150px;
}

.arenafunworld-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
  color: #FFFFFF;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

.arenafunworld-submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.5);
}

.arenafunworld-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

#form-feedback {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 12px;
  display: none;
  font-weight: 600;
  font-size: 15px;
}

#form-feedback.success {
  background: rgba(38, 166, 154, 0.18);
  color: #26A69A;
  border: 2px solid rgba(38, 166, 154, 0.35);
}

#form-feedback.error {
  background: rgba(255, 107, 107, 0.18);
  color: #FF6B6B;
  border: 2px solid rgba(255, 107, 107, 0.35);
}

.arenafunworld-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(26, 58, 92, 0.12);
}

.arenafunworld-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.arenafunworld-info-icon-box {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #26A69A 0%, #2DBFAE 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arenafunworld-info-icon-box i {
  font-size: 22px;
  color: #FFFFFF;
}

.arenafunworld-info-details h4 {
  font-size: 18px;
  font-weight: 800;
  color: #1A3A5C;
  margin-bottom: 7px;
}

.arenafunworld-info-details p {
  font-size: 15px;
  color: #5A7082;
  line-height: 1.7;
}

.arenafunworld-info-details a {
  color: #26A69A;
  text-decoration: none;
  font-weight: 700;
}

.arenafunworld-info-details a:hover {
  text-decoration: underline;
}

.arenafunworld-info-note {
  font-size: 14px !important;
  color: #7A8A9A !important;
  margin-top: 5px;
}

/* Story Content */
.arenafunworld-story-content {
  max-width: 920px;
  margin: 0 auto;
}

.arenafunworld-story-p-last {
  font-size: 17px;
  line-height: 1.85;
  color: #5A7082;
  margin-bottom: 24px;
}

.arenafunworld-story-p-last:last-child {
  margin-bottom: 0;
}

.arenafunworld-story-p {
  font-size: 16px;
  line-height: 1.75;
  color: #5A7082;
}

/* Footer */
.arenafunworld-footer {
  background: #1A3A5C;
  color: #FFFFFF;
  padding: 70px 0 28px;
  border-top: 5px solid #FF6B6B;
}

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

.arenafunworld-footer-col h3 {
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid #26A69A;
}

.arenafunworld-footer-col p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
}

.arenafunworld-footer-col a {
  color: #FFC857;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.arenafunworld-footer-col a:hover {
  color: #FFD885;
  text-decoration: underline;
}

.arenafunworld-footer-disclaimer {
  background: rgba(0, 0, 0, 0.25);
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 28px;
  border: 2px solid rgba(255, 200, 87, 0.25);
}

.arenafunworld-footer-disclaimer p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
}

.arenafunworld-footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.arenafunworld-footer-disclaimer strong {
  color: #FFC857;
  font-weight: 800;
}

.arenafunworld-footer-disclaimer a {
  color: #FFC857;
  text-decoration: underline;
}

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

.arenafunworld-footer-bottom p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.arenafunworld-footer-bottom a {
  color: #FFC857;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}

.arenafunworld-footer-bottom a:hover {
  text-decoration: underline;
}

/* Cookie Popup */
.arenafunworld-cookie-popup {
  position: fixed;
  bottom: 28px;
  left: 28px;
  right: 28px;
  max-width: 560px;
  background: #1A3A5C;
  color: #FFFFFF;
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  z-index: 10000;
  border: 3px solid #26A69A;
}

.arenafunworld-cookie-popup p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.arenafunworld-cookie-popup a {
  color: #FFC857;
  text-decoration: underline;
  font-weight: 700;
}

.arenafunworld-cookie-buttons {
  display: flex;
  gap: 14px;
}

.arenafunworld-cookie-accept {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
  color: #FFFFFF;
  border: none;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(255, 107, 107, 0.45);
}

.arenafunworld-cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.55);
}

@media (max-width: 768px) {
  .arenafunworld-cookie-popup {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

/* Game Modal */
.arenafunworld-game-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.arenafunworld-modal-content {
  background: #1A3A5C;
  border-radius: 12px;
  width: 100%;
  max-width: 1240px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
  border: 3px solid #26A69A;
}

.arenafunworld-modal-header {
  padding: 20px 28px;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px 12px 0 0;
}

.arenafunworld-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
}

.arenafunworld-modal-close {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: #FFFFFF;
  font-size: 36px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
}

.arenafunworld-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.arenafunworld-modal-body {
  flex-grow: 1;
  padding: 0;
  background: #0A1A2A;
  border-radius: 0 0 12px 12px;
}

.arenafunworld-modal-body iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
  border-radius: 0 0 12px 12px;
}

@media (max-width: 768px) {
  .arenafunworld-modal-body iframe {
    min-height: 420px;
  }
}

/* Legal Pages */
.arenafunworld-legal-content {
  max-width: 940px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 44px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(26, 58, 92, 0.1);
  border: 2px solid rgba(38, 166, 154, 0.15);
}

.arenafunworld-legal-content h2 {
  font-size: 30px;
  font-weight: 900;
  color: #FF6B6B;
  margin-top: 36px;
  margin-bottom: 18px;
}

.arenafunworld-legal-content h2:first-child {
  margin-top: 0;
}

.arenafunworld-legal-content h3 {
  font-size: 23px;
  font-weight: 800;
  color: #1A3A5C;
  margin-top: 28px;
  margin-bottom: 14px;
}

.arenafunworld-legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #5A7082;
  margin-bottom: 18px;
}

.arenafunworld-legal-content ul,
.arenafunworld-legal-content ol {
  margin-left: 28px;
  margin-bottom: 18px;
}

.arenafunworld-legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #5A7082;
  margin-bottom: 10px;
}

.arenafunworld-legal-content a {
  color: #26A69A;
  text-decoration: none;
  font-weight: 700;
}

.arenafunworld-legal-content a:hover {
  text-decoration: underline;
}

.arenafunworld-legal-content strong {
  color: #1A3A5C;
  font-weight: 800;
}

@media (max-width: 768px) {
  .arenafunworld-legal-content {
    padding: 28px 24px;
  }

  .arenafunworld-legal-content h2 {
    font-size: 26px;
  }

  .arenafunworld-legal-content h3 {
    font-size: 20px;
  }
}

/* Responsive Grid Adjustments */
@media (max-width: 968px) {
  .arenafunworld-cards-grid,
  .arenafunworld-cards-grid-3,
  .arenafunworld-cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .arenafunworld-games-container {
    grid-template-columns: 1fr;
  }

  .arenafunworld-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .arenafunworld-stats-container {
    grid-template-columns: 1fr;
  }

  .arenafunworld-btn-container {
    flex-direction: column;
  }

  .arenafunworld-btn {
    width: 100%;
    text-align: center;
  }
}

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

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

