/* Jackpot City Casino - Main Styles */
/* Mobile First Approach */

:root {
  --primary-color: rgb(17, 0, 32);
  --secondary-color: #F7A403;
  --accent-color: #bd0aff;
  --white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-gray: rgba(255, 255, 255, 0.7);
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff6b35);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  --container-max: 1200px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--primary-color);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 1.75rem;
  color: var(--secondary-color);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  font-size: 1rem;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gradient-secondary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 164, 3, 0.4);
  color: var(--white);
  text-decoration: none;
}

.btn-secondary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(189, 10, 255, 0.4);
  color: var(--white);
  text-decoration: none;
}

header .container {
    max-width: unset;
}

.btn-outline {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
}

/* Header */
.header {
  background: rgba(17, 0, 32, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(247, 164, 3, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  min-height: 70px;
}

.logo {
  height: 40px;
  width: auto;
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary-color);
}

.header-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.header-btn {
  padding: 0.5rem;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-btn .btn-text {
  display: none;
}

.header-btn i {
  font-size: 1.2rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--primary-color);
  border-top: 1px solid rgba(247, 164, 3, 0.3);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  padding: 1rem;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  color: var(--text-light);
  font-weight: 500;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  max-height: 1400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 0, 32, 0.8), rgba(189, 10, 255, 0.6));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.15);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Slots Section */
.slots-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--primary-color), rgba(17, 0, 32, 0.8));
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.slot-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(247, 164, 3, 0.3);
}

.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(247, 164, 3, 0.3);
}

.slot-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.slot-content {
  padding: 1.5rem;
}

.slot-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.slot-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.play-now-btn {
  width: 100%;
  background: var(--gradient-secondary);
  color: var(--white);
  border: none;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.play-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 164, 3, 0.4);
}

/* Content Section */
.content-section {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  gap: 3rem;
  margin-top: 2rem;
}

.content-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid rgba(247, 164, 3, 0.2);
}

.content-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Table Styles */
.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
  background: var(--gradient-secondary);
  color: var(--white);
  font-weight: 600;
}

td {
  color: var(--text-light);
}

tr:hover {
  background: rgba(247, 164, 3, 0.1);
}

/* FAQ Section */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  border: 1px solid rgba(247, 164, 3, 0.2);
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 1.5rem;
  font-size: 18px;
  text-align: left;
  color: var(--secondary-color);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  display: none;
}

.faq-answer p {
    margin-bottom: 0;
    opacity: 0.8;
}

.faq-answer.active {
  display: block;
  border-top: 1px solid rgba(247, 164, 3, 0.2);
  padding: 1.5rem;
}

/* Footer */
.footer {
  background: var(--primary-color);
  border-top: 1px solid rgba(247, 164, 3, 0.3);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.payment-icon {
  width: 50px;
  height: 30px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--secondary-color);
}

.text-purple {
  color: var(--accent-color);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .header-btn {
    padding: 0.5rem 1rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .slots-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }

  .content-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
  }
}

/* Laptop Styles */
@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .slots-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Styles */
@media (min-width: 1280px) {
  .container {
    padding: 0 3rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.75rem;
  }

  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .header-content {
    padding: 1rem 2rem;
  }

  .nav {
    display: block;
  }

  .mobile-menu-toggle {
    display: none;
  }
}

@media (min-width: 360px) {
    .header-btn .btn-text {
        display: inline;
    }

    .header-btn i {
        display: none;
    }

    .header-content{
        gap: 0;
    }

    header .logo {
        height: 40px !important;
    }
}

ul {
    list-style: none;
    padding: 0;
}

.header-content{
    gap: 20px;
}

header .logo {
    height: 30px;
} 

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading {
  animation: spin 1s linear infinite;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .mobile-menu,
  .hero-video {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
} 