/* bigbunny slot - Professional Design Stylesheet */
/* All classes use prefix: vfa6- */
/* Color scheme: #9932CC | #2D2D2D | #0097A7 | #8B008B */
/* Last updated: 2025-10-27 */

/* CSS Variables for consistent theming */
:root {
  --vfa6-primary: #9932CC;
  --vfa6-primary-dark: #8B008B;
  --vfa6-primary-light: #BA55D3;
  --vfa6-secondary: #0097A7;
  --vfa6-bg-dark: #2D2D2D;
  --vfa6-bg-darker: #1a1a1a;
  --vfa6-text-light: #FFFFFF;
  --vfa6-text-gray: #E0E0E0;
  --vfa6-accent: #FFB300;
  --vfa6-border: #404040;
  --vfa6-success: #4CAF50;
  --vfa6-danger: #FF5252;
  --vfa6-radius: 8px;
  --vfa6-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--vfa6-bg-darker);
  color: var(--vfa6-text-light);
  line-height: 1.6;
  font-size: 1.4rem;
  overflow-x: hidden;
}

/* Typography */
h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--vfa6-text-light);
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--vfa6-primary);
  text-transform: uppercase;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--vfa6-text-light);
}

h4 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--vfa6-text-gray);
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
  color: var(--vfa6-text-gray);
}

a {
  color: var(--vfa6-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--vfa6-primary-light);
  text-decoration: underline;
}

/* Main Container */
.vfa6-container {
  max-width: 430px;
  margin: 0 auto;
  width: 100%;
  background-color: var(--vfa6-bg-dark);
  min-height: 100vh;
}

.vfa6-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Header Navigation */
.vfa6-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--vfa6-bg-dark) 0%, var(--vfa6-bg-darker) 100%);
  border-bottom: 2px solid var(--vfa6-primary);
  z-index: 1000;
  padding: 0;
  box-shadow: var(--vfa6-shadow);
}

.vfa6-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  width: 100%;
}

.vfa6-logo-section {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
}

.vfa6-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--vfa6-primary) 0%, var(--vfa6-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vfa6-text-light);
  font-weight: bold;
  font-size: 1.4rem;
}

.vfa6-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vfa6-text-light);
  letter-spacing: 0.5px;
}

.vfa6-header-buttons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.vfa6-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: var(--vfa6-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  text-decoration: none;
}

.vfa6-btn-primary {
  background: linear-gradient(135deg, var(--vfa6-primary) 0%, var(--vfa6-primary-dark) 100%);
  color: var(--vfa6-text-light);
}

.vfa6-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(153, 50, 204, 0.4);
}

.vfa6-btn-outline {
  border: 2px solid var(--vfa6-primary);
  color: var(--vfa6-primary);
  background: transparent;
}

.vfa6-btn-outline:hover {
  background: var(--vfa6-primary);
  color: var(--vfa6-text-light);
  transform: translateY(-2px);
}

.vfa6-btn-secondary {
  background: var(--vfa6-secondary);
  color: var(--vfa6-text-light);
}

.vfa6-btn-secondary:hover {
  background: darken(var(--vfa6-secondary), 10%);
  transform: translateY(-2px);
}

.vfa6-menu-toggle {
  background: none;
  border: none;
  color: var(--vfa6-text-light);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.4rem;
  display: none;
  align-items: center;
  justify-content: center;
}

.vfa6-menu-toggle:hover {
  color: var(--vfa6-primary);
}

/* Mobile Menu */
.vfa6-mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--vfa6-bg-dark);
  border-bottom: 1px solid var(--vfa6-border);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.vfa6-mobile-menu.vfa6-menu-active {
  max-height: 500px;
  border-bottom: 2px solid var(--vfa6-primary);
}

.vfa6-mobile-menu-list {
  list-style: none;
  padding: 1rem 0;
}

.vfa6-mobile-menu-item {
  border-bottom: 1px solid var(--vfa6-border);
}

.vfa6-mobile-menu-item:last-child {
  border-bottom: none;
}

.vfa6-mobile-menu-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--vfa6-text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: 500;
}

.vfa6-mobile-menu-link:hover {
  background: rgba(153, 50, 204, 0.1);
  color: var(--vfa6-primary);
  padding-left: 2rem;
}

/* Main Content */
main {
  margin-top: 60px;
  padding: 0;
  width: 100%;
}

/* Hero Section with Carousel */
.vfa6-hero {
  position: relative;
  width: 100%;
  height: auto;
}

.vfa6-carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--vfa6-bg-darker);
}

.vfa6-carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  cursor: pointer;
  transition: opacity 0.5s ease;
}

.vfa6-carousel-slide.vfa6-slide-active {
  display: block;
  animation: vfa6-fadeIn 0.5s ease;
}

.vfa6-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes vfa6-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.vfa6-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: var(--vfa6-text-light);
  border: none;
  padding: 0.8rem 1rem;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.vfa6-carousel-prev {
  left: 1rem;
}

.vfa6-carousel-next {
  right: 1rem;
}

.vfa6-carousel-control:hover {
  background: var(--vfa6-primary);
}

/* Title Section */
.vfa6-title-section {
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(153, 50, 204, 0.1) 0%, rgba(0, 151, 167, 0.05) 100%);
  border-bottom: 1px solid var(--vfa6-border);
}

.vfa6-title-section h1 {
  color: var(--vfa6-primary);
  font-size: 2.4rem;
}

/* Game Categories and Grid */
.vfa6-games-section {
  padding: 1.5rem 1rem;
  width: 100%;
}

.vfa6-game-category {
  margin-bottom: 2.5rem;
}

.vfa6-category-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--vfa6-primary);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vfa6-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

.vfa6-game-card {
  position: relative;
  cursor: pointer;
  border-radius: var(--vfa6-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  text-align: center;
}

.vfa6-game-card:hover {
  transform: scale(1.08);
}

.vfa6-game-icon {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--vfa6-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.vfa6-game-card:hover .vfa6-game-icon {
  transform: scale(1.1);
}

.vfa6-game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vfa6-game-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--vfa6-text-gray);
  line-height: 1.2;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.vfa6-game-card:hover .vfa6-game-name {
  color: var(--vfa6-primary);
}

/* Content Sections */
.vfa6-content-section {
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  background: rgba(153, 50, 204, 0.05);
  border-radius: var(--vfa6-radius);
  border-left: 4px solid var(--vfa6-primary);
}

.vfa6-content-section h2 {
  margin-bottom: 1.5rem;
  color: var(--vfa6-primary);
}

.vfa6-content-section p {
  color: var(--vfa6-text-gray);
  margin-bottom: 1rem;
}

.vfa6-content-section ul,
.vfa6-content-section ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.vfa6-content-section li {
  margin-bottom: 0.8rem;
  color: var(--vfa6-text-gray);
}

/* Feature List */
.vfa6-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.vfa6-feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--vfa6-bg-dark);
  border-radius: var(--vfa6-radius);
  border: 1px solid var(--vfa6-border);
  align-items: flex-start;
}

.vfa6-feature-icon {
  font-size: 1.8rem;
  color: var(--vfa6-primary);
  min-width: 30px;
  text-align: center;
}

.vfa6-feature-text h4 {
  color: var(--vfa6-text-light);
  margin-bottom: 0.4rem;
}

.vfa6-feature-text p {
  font-size: 1.2rem;
  color: var(--vfa6-text-gray);
  margin: 0;
}

/* FAQ Section */
.vfa6-faq-container {
  margin: 1.5rem 0;
}

.vfa6-faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--vfa6-border);
  border-radius: var(--vfa6-radius);
  overflow: hidden;
  background: var(--vfa6-bg-dark);
}

.vfa6-faq-question {
  padding: 1rem 1.5rem;
  background: var(--vfa6-bg-dark);
  cursor: pointer;
  font-weight: 600;
  color: var(--vfa6-text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.vfa6-faq-question:hover {
  background: rgba(153, 50, 204, 0.1);
  color: var(--vfa6-primary);
}

.vfa6-faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.vfa6-faq-answer {
  display: none;
  padding: 1rem 1.5rem;
  background: var(--vfa6-bg-darker);
  color: var(--vfa6-text-gray);
  border-top: 1px solid var(--vfa6-border);
}

.vfa6-faq-item.vfa6-faq-open .vfa6-faq-answer {
  display: block;
}

.vfa6-faq-item.vfa6-faq-open .vfa6-faq-icon {
  transform: rotate(180deg);
}

/* RTP Analysis Section */
.vfa6-rtp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.vfa6-rtp-card {
  padding: 1rem;
  background: var(--vfa6-bg-dark);
  border: 1px solid var(--vfa6-border);
  border-radius: var(--vfa6-radius);
  text-align: center;
}

.vfa6-rtp-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vfa6-primary);
  margin-bottom: 0.5rem;
}

.vfa6-rtp-label {
  font-size: 1.1rem;
  color: var(--vfa6-text-gray);
}

/* Footer */
.vfa6-footer {
  background: linear-gradient(135deg, var(--vfa6-bg-darker) 0%, var(--vfa6-bg-dark) 100%);
  padding: 2rem 1.5rem;
  padding-bottom: 5rem;
  border-top: 2px solid var(--vfa6-primary);
  margin-top: 3rem;
}

.vfa6-footer-section {
  margin-bottom: 2rem;
}

.vfa6-footer-section:last-child {
  margin-bottom: 0;
}

.vfa6-footer-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--vfa6-primary);
  margin-bottom: 1rem;
}

.vfa6-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.vfa6-footer-link {
  font-size: 1.1rem;
  color: var(--vfa6-text-gray);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.vfa6-footer-link:hover {
  color: var(--vfa6-primary);
  border-bottom-color: var(--vfa6-primary);
}

/* Partners Section */
.vfa6-partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin: 1rem 0;
}

.vfa6-partner-logo {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--vfa6-bg-dark);
  border: 1px solid var(--vfa6-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vfa6-partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.vfa6-copyright {
  font-size: 1.1rem;
  color: var(--vfa6-text-gray);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--vfa6-border);
  margin-top: 1.5rem;
}

/* Bottom Navigation Bar */
.vfa6-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--vfa6-bg-dark) 0%, var(--vfa6-bg-darker) 100%);
  border-top: 2px solid var(--vfa6-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 70px;
  z-index: 1000;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.4);
}

.vfa6-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-width: 60px;
  min-height: 70px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--vfa6-text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-align: center;
  padding: 0;
}

.vfa6-bottom-nav-btn:hover {
  color: var(--vfa6-primary);
  transform: scale(1.1);
}

.vfa6-bottom-nav-btn.vfa6-bottom-nav-active {
  color: var(--vfa6-primary);
  background: rgba(153, 50, 204, 0.15);
  transform: scale(1.05);
}

.vfa6-bottom-nav-icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
}

.vfa6-bottom-nav-label {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Media Queries for Desktop */
@media (min-width: 769px) {
  .vfa6-bottom-nav {
    display: none;
  }

  .vfa6-menu-toggle {
    display: none;
  }

  .vfa6-mobile-menu {
    display: none !important;
  }

  main {
    padding-bottom: 0 !important;
  }

  .vfa6-container {
    max-width: 100%;
  }

  .vfa6-game-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .vfa6-header-buttons {
    gap: 1rem;
  }
}

/* Utility Classes */
.vfa6-text-center {
  text-align: center;
}

.vfa6-text-bold {
  font-weight: 700;
}

.vfa6-text-primary {
  color: var(--vfa6-primary);
}

.vfa6-bg-primary {
  background: var(--vfa6-primary);
}

.vfa6-margin-top {
  margin-top: 1.5rem;
}

.vfa6-margin-bottom {
  margin-bottom: 1.5rem;
}

.vfa6-hidden {
  display: none !important;
}

.vfa6-visible {
  display: block !important;
}

/* Mobile-specific adjustments */
@media (max-width: 430px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .vfa6-game-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .vfa6-game-icon {
    width: 50px;
    height: 50px;
  }

  .vfa6-header-content {
    padding: 0.8rem 1rem;
  }

  .vfa6-content-section {
    padding: 1.5rem 1rem;
  }

  .vfa6-btn {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
  }

  .vfa6-title-section {
    padding: 1.5rem 1rem;
  }

  .vfa6-carousel {
    height: 150px;
  }
}

/* Animations */
@keyframes vfa6-slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vfa6-slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vfa6-card-hover {
  animation: vfa6-slideIn 0.3s ease;
}

/* Print styles */
@media print {
  .vfa6-header,
  .vfa6-bottom-nav,
  .vfa6-menu-toggle {
    display: none;
  }

  main {
    margin-top: 0;
    padding-bottom: 0;
  }
}
