/* partyrushh.com - Gaming Platform */

/* Responsive Typography */
h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
}
h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}
h4 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

/* Fix Bootstrap's font-size issue */
html {
  font-size: 16px !important;
}

a:hover {
  text-decoration: none;
}

/* Responsive font sizing */
@media (max-width: 768px) {
  html {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px !important;
  }
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

/* PartyRushh Custom Variables - Dark Theme */
:root {
  --funarena-primary: #6366f1;
  --funarena-secondary: #8b5cf6;
  --funarena-accent: #ec4899;
  --funarena-dark: #0a0a0a;
  --funarena-dark-secondary: #1a1a1a;
  --funarena-light: #2a2a2a;
  --funarena-white: #ffffff;
  --funarena-success: #10b981;
  --funarena-warning: #f59e0b;
  --funarena-error: #ef4444;
  --funarena-text: #f5f5f5;
  --funarena-text-muted: #a3a3a3;
  --funarena-border: #404040;
  --funarena-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  --funarena-shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.7);
}

/* Global Styles */
body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--funarena-dark);
  color: var(--funarena-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Navigation */
.funarena-navbar {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--funarena-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--funarena-border);
}

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

.funarena-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--funarena-primary);
  font-weight: 700;
  font-size: 1.5rem;
}

.funarena-logo img {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

.funarena-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.funarena-cta-button-container {
  margin-top: 2rem;
  text-align: center;
}

.mt-5 {
  margin-top: 5rem;
}

.funarena-nav-link {
  text-decoration: none;
  color: var(--funarena-text);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.funarena-nav-link:hover {
  color: var(--funarena-primary);
}

.funarena-nav-link.active {
  color: var(--funarena-primary);
}

.funarena-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--funarena-primary);
}

.funarena-cta-button {
  background: linear-gradient(
    45deg,
    var(--funarena-primary),
    var(--funarena-accent)
  );
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.funarena-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--funarena-shadow-hover);
  color: white;
  text-decoration: none;
}

/* Hamburger Menu */
.funarena-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.funarena-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--funarena-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.funarena-hero {
  padding: 120px 2rem 80px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.funarena-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/6e7f9368054c62c99d08cc53265c5fa2a7e6ca85.svg");
  opacity: 0.3;
}

.funarena-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.funarena-hero-badge {
  background: rgba(99, 102, 241, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.5);
}

.funarena-hero-title {
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.funarena-hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 300;
}

.funarena-hero-cta {
  background: var(--funarena-secondary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.funarena-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  color: white;
  text-decoration: none;
}

/* Features Section */
.funarena-features {
  padding: 80px 2rem;
  background: var(--funarena-dark-secondary);
}

.funarena-features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.funarena-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.funarena-feature-card {
  background: var(--funarena-light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--funarena-shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--funarena-border);
}

.funarena-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--funarena-shadow-hover);
}

.funarena-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    45deg,
    var(--funarena-primary),
    var(--funarena-accent)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.funarena-feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--funarena-text);
}

.funarena-feature-desc {
  color: var(--funarena-text-muted);
  line-height: 1.6;
}

/* Games Section */
.funarena-games {
  padding: 80px 2rem;
  background: var(--funarena-dark);
}

.funarena-games-container {
  max-width: 1200px;
  margin: 0 auto;
}

.funarena-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.funarena-game-card {
  background: var(--funarena-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--funarena-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--funarena-border);
}

.funarena-game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--funarena-shadow-hover);
}

.funarena-game-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.funarena-game-content {
  padding: 1.5rem;
}

.funarena-game-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--funarena-text);
}

.funarena-game-desc {
  color: var(--funarena-text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.funarena-game-button {
  background: var(--funarena-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  display: inline-block;
}

.funarena-game-button:hover {
  background: var(--funarena-accent);
  color: white;
  text-decoration: none;
}

/* Logos Grid Section */
.logos-grid-section {
  padding: 3rem 2rem;
  background: var(--funarena-dark-secondary);
  border-top: 1px solid var(--funarena-border);
}

.logos-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.logos-grid img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: grayscale(20%);
}

.logos-grid a:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Footer */
.funarena-footer {
  background: var(--funarena-dark-secondary);
  color: white;
  padding: 3rem 2rem 1rem;
  border-top: 1px solid var(--funarena-border);
}

.funarena-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.funarena-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.funarena-footer-section h4 {
  color: var(--funarena-accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.funarena-footer-section p,
.funarena-footer-section a {
  display: block;
  color: #bdc3c7;
  text-decoration: none;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.funarena-footer-section a:hover {
  color: var(--funarena-accent);
}

.funarena-footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Age Verification Popup 18+ */
.funarena-age-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin: 0;
}

.funarena-age-popup.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.funarena-age-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.funarena-age-popup-content {
  position: relative;
  z-index: 1;
  background: var(--funarena-light);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--funarena-border);
  text-align: center;
  animation: funarena-age-popup-slide-in 0.3s ease-out;
  margin: auto;
  transform: translateZ(0);
  top: 20%;
}

@keyframes funarena-age-popup-slide-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.funarena-age-popup-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    45deg,
    var(--funarena-warning),
    var(--funarena-error)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.funarena-age-popup-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--funarena-text);
}

.funarena-age-popup-text {
  color: var(--funarena-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.funarena-age-popup-text a {
  color: var(--funarena-accent);
  text-decoration: none;
}

.funarena-age-popup-text a:hover {
  text-decoration: underline;
}

.funarena-age-popup-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-direction: column;
}

.funarena-age-popup-confirm {
  background: linear-gradient(
    45deg,
    var(--funarena-primary),
    var(--funarena-accent)
  );
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.funarena-age-popup-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.funarena-age-popup-decline {
  background: transparent;
  color: var(--funarena-text-muted);
  border: 2px solid var(--funarena-border);
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.funarena-age-popup-decline:hover {
  background: var(--funarena-dark-secondary);
  border-color: var(--funarena-text-muted);
  color: var(--funarena-text);
}

/* Block body scroll when age popup is shown */
body.age-popup-active {
  overflow: hidden;
}

/* Cookie Consent */
.funarena-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--funarena-light);
  color: white;
  padding: 1rem 2rem;
  z-index: 1001;
  display: none;
  border-top: 1px solid var(--funarena-border);
}

.funarena-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.funarena-cookie-text {
  flex: 1;
  font-size: 0.9rem;
}

.funarena-cookie-buttons {
  display: flex;
  gap: 1rem;
}

.funarena-cookie-accept {
  background: var(--funarena-success);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}

.funarena-cookie-policy {
  color: var(--funarena-accent);
  text-decoration: none;
}

/* Contact Form */
.funarena-contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--funarena-light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--funarena-shadow);
  border: 1px solid var(--funarena-border);
}

.funarena-form-group {
  margin-bottom: 1.5rem;
}

.funarena-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--funarena-text);
}

.funarena-form-input,
.funarena-form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--funarena-border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--funarena-dark-secondary);
  color: var(--funarena-text);
}

.funarena-form-input:focus,
.funarena-form-textarea:focus {
  outline: none;
  border-color: var(--funarena-primary);
}

.funarena-form-submit {
  background: var(--funarena-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.funarena-form-submit:hover {
  background: var(--funarena-accent);
}

.funarena-form-success {
  background: var(--funarena-success);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
  display: none;
}

/* CTA Button Container */
.funarena-cta-button-container {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .funarena-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--funarena-light);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--funarena-shadow);
    border-top: 1px solid var(--funarena-border);
  }

  .funarena-nav-menu.active {
    display: flex;
  }

  .funarena-hamburger {
    display: flex;
  }

  .funarena-hero {
    padding: 100px 1rem 60px;
  }

  .funarena-features,
  .funarena-games {
    padding: 60px 1rem;
  }

  .funarena-footer {
    padding: 2rem 1rem 1rem;
  }

  .funarena-cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .funarena-cookie-buttons {
    justify-content: center;
  }

  .funarena-age-popup {
    padding: 1rem;
    display: none;
  }

  .funarena-age-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .funarena-age-popup-content {
    padding: 2rem 1.5rem;
    max-width: 90%;
    margin: auto;
  }

  .funarena-age-popup-title {
    font-size: 1.5rem;
  }

  .funarena-age-popup-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

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

  .funarena-hero {
    padding: 80px 1rem 40px;
  }

  .funarena-feature-card,
  .funarena-game-card {
    margin: 0 1rem;
  }
}
