/* ============================= */
/* Arvika.click Site CSS */
/* ============================= */

body.arvika-click-body {
  font-family: 'Montserrat', sans-serif;
  background-color: #1c131f;
  color: #eddaf8;
  margin: 0;
  padding: 0;
}

/* ============================= */
/* Navbar Styling - Arvika.click */
/* ============================= */

.arvika-click-navbar {
  background-color: #1c131f; /* site background */
  padding: 0.8rem 1rem;
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif; /* unique system font */
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Logo */
.arvika-click-logo {
  height: 82px;
  transition: transform 0.3s ease;
}
.arvika-click-logo:hover {
  transform: scale(1.05);
}

/* Nav links */
.arvika-click-nav .nav-link {
  color: #eddaf8;
  font-weight: 600;
  padding: 0.55rem 1rem;
  transition: all 0.2s ease;
  text-shadow: -1px -1px 0 #341b8d, 1px -1px 0 #341b8d, -1px 1px 0 #341b8d, 1px 1px 0 #341b8d;
}

.arvika-click-nav .nav-link:hover,
.arvika-click-nav .nav-link.active {
  color: #a100fc;
  background-color: rgba(161, 0, 252, 0.15);
  border-radius: 6px;
}

/* Bootstrap toggler button overrides */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Custom toggler icon color */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(237,218,248,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .arvika-click-nav .nav-link {
    text-align: center;
    padding: 0.7rem 1rem;
  }
}

/* ----------------------------- */
/* Hero Section */
.arvika-click-hero {
  position: relative;
  height: 89vh;
  background: url("../images/hero.jpg") center/cover no-repeat;
  color: #eddaf8;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.arvika-click-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Title */
.arvika-click-hero .hero-title {
  font-size: 3rem;
  color: #a100fc;
  text-shadow: 2px 2px #341b8d;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Subtitle */
.arvika-click-hero .hero-sub {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}




/* Buttons */
.btn-arvika {
  background-color: #a100fc;
  color: #1c131f;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}
.btn-arvika:hover {
  background-color: #eddaf8;
  color: #1c131f;
}

/* ----------------------------- */
/* Disclaimer */
.arvika-click-disclaimer-card,
.arvika-disclaimer-card {
  background-color: #1c131f;
  border: 1px solid #a100fc;
  box-shadow: 0 6px 12px rgba(161,0,252,0.2);
}
.arvika-click-disclaimer-card h2,
.disclaimer-title {
  color: #a100fc; /* Main heading color */
  font-weight: 700;
  font-size: 2rem;
  text-align: center;

  /* Strong border/outline effect using multiple shadows */
  text-shadow: 
    -1px -1px 0 #341b8d,
     1px -1px 0 #341b8d,
    -1px  1px 0 #341b8d,
     1px  1px 0 #341b8d;
}

/* Games Section */
.arvika-click-play .container {
  max-width: 900px;
}

/* Grid */
.games-grid {
  display: grid;
  gap: 2rem;
}

/* Card */
.arvika-game-card {
  background: #1c131f;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  padding: 0;
}

/* Responsive 16:9 Frame */
.game-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.game-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .games-grid {
    gap: 1.5rem;
  }
}

/* Features Section */
.arvika-click-features {
  background: #1c131f;
  color: #eddaf8;
}

.section-title {
  color: #a100fc;
  font-weight: 700;
  text-shadow: -1px -1px 0 #341b8d, 1px -1px 0 #341b8d, -1px 1px 0 #341b8d, 1px 1px 0 #341b8d;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #eddaf8;
  opacity: 0.85;
}

/* Feature Card */
.feature-card {
  background: #2a1a36;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 2rem;
  color: #a100fc;
}

.feature-title {
  color: #a100fc;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #eddaf8;
  opacity: 0.9;
}

/* About Section */
.arvika-click-about {
  color: #eddaf8;
}

.arvika-click-about .section-title {
  color: #a100fc;
  text-shadow: 1px 1px #341b8d;
  font-weight: 700;
}

.arvika-click-about p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #eddaf8;
}

.arvika-click-about .about-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  margin-top: 20px;
}


/* ----------------------------- */
/* Contact */
.arvika-click-input {
  background-color: #1c131f;
  color: #eddaf8;
  border: 1px solid #a100fc;
  border-radius: 5px;
}
.arvika-click-input::placeholder {
  color: #eddaf8;
  opacity: 0.7;
}

/* ============================= */
/* Footer Styling - Arvika.click */
/* ============================= */

.arvika-click-footer {
  background: #1c131f;
  color: #eddaf8;
  font-family: 'Trebuchet MS', system-ui, sans-serif;
  font-size: 0.95rem;
  border-top: 3px solid #a100fc;
}

.arvika-click-footer-logo {
  height: 70px;
  max-width: 100%;
  margin-bottom: 20px;
}

/* Footer Links */
.arvika-click-footer-links li a {
  color: #eddaf8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.arvika-click-footer-links li a:hover,
.arvika-click-footer-links li a:focus {
  color: #a100fc;
  text-shadow: 0 0 6px rgba(161, 0, 252, 0.6);
}

/* Disclaimer Section */
.arvika-click-footer-disclaimer {
  background: rgba(161, 0, 252, 0.08);
  border: 1px solid rgba(161, 0, 252, 0.4);
  padding: 18px 22px;
  border-radius: 8px;
  text-align: center;
  color: #eddaf8;
}

.arvika-click-footer-disclaimer .disclaimer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #a100fc;
  text-shadow: 1px 1px #341b8d;
  margin-bottom: 10px;
}

.arvika-click-footer-disclaimer .disclaimer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #eddaf8;
}

/* Credits */
.arvika-click-footer-credit,
.arvika-click-footer-powered {
  font-size: 0.9rem;
  color: #c7b2d9;
}

.arvika-click-footer-credit a,
.arvika-click-footer-powered a {
  color: #a100fc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.arvika-click-footer-credit a:hover,
.arvika-click-footer-powered a:hover {
  color: #eddaf8;
}


/* Popup */
.arvika-click-disclaimer-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 19, 31, 0.95);
  justify-content: center;
  align-items: center;
}

.arvika-click-disclaimer-content {
  background: #1c131f;
  color: #eddaf8;
  max-width: 600px;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #a100fc;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.arvika-click-disclaimer-content h2 {
  color: #a100fc;
  text-shadow: 1px 1px #341b8d;
  margin-bottom: 1rem;
}

.popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.arvika-click-btn {
  background: #a100fc;
  color: #1c131f;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.arvika-click-btn:hover {
  background: #eddaf8;
  color: #1c131f;
}

.arvika-click-btn-exit {
  background: #341b8d;
  color: #eddaf8;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.arvika-click-btn-exit:hover {
  background: #a100fc;
  color: #1c131f;
}

/* Scroll to Top */
.scroll-top-btn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: #a100fc;
  color: #1c131f;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.scroll-top-btn:hover {
  background: #eddaf8;
  color: #1c131f;
}



/* =============================== */
/* Legal Pages Styling - Arvika.click */
/* =============================== */

.legal-section {
  background-color: #1c131f; /* site background */
  color: #eddaf8; /* main text */
  padding: 60px 20px;
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  line-height: 1.7;
}

.legal-section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Headings */
.legal-heading,
.legal-section h1,
.legal-section h2,
.legal-section h3 {
  color: #a100fc; /* headings accent */
  text-shadow: 1px 1px #341b8d; /* text border effect */
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
}

/* Subheadings */
.legal-section h2 {
  font-size: 1.8rem;
  margin-top: 40px;
}

.legal-section h3 {
  font-size: 1.4rem;
  margin-top: 25px;
}

/* Paragraphs */
.legal-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #eddaf8;
}

/* Links */
.legal-section a {
  color: #a100fc;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.legal-section a:hover {
  color: #eddaf8;
  text-decoration: none;
}

/* Lists */
.legal-section ul,
.legal-section ol {
  padding-left: 25px;
  margin-bottom: 20px;
}

.legal-section li {
  margin-bottom: 10px;
}

/* Disclaimer highlight box */
.legal-disclaimer-box {
  background: rgba(161, 0, 252, 0.08);
  border-left: 4px solid #a100fc;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  font-size: 0.95rem;
  color: #eddaf8;
}

.legal-disclaimer-box strong {
  color: #a100fc;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-section {
    padding: 40px 15px;
  }
  .legal-section h1 {
    font-size: 2rem;
  }
  .legal-section h2 {
    font-size: 1.4rem;
  }
}
