/* Ivy Casino - Main Styles */
/* Colors: #0d0c0d, #1dd354, #423d42 */

:root {
  --dark-bg: #0d0c0d;
  --green-accent: #1dd354;
  --gray-text: #423d42;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --border-gray: #e0e0e0;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--dark-bg);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}


h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: var(--green-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--white);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: linear-gradient(110deg,#0d0c0d 75%,#1dd354 0);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--green-accent);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 15px;
  width: auto;
}

/* Navigation */
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-accent);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  min-height: 44px;
}

.section-dark .btn-primary {
  background-color: var(--green-accent);
  color: var(--dark-bg);
}

.section-dark .btn-primary:hover {
  background-color: var(--dark-bg);
  color: var(--green-accent);
}

.section-gray .card .btn-primary {
  background-color: var(--green-accent);
  color: var(--dark-bg);
  border-bottom: 4px solid transparent; 
}

.section-gray .card .btn-primary:hover {
  background-color: var(--dark-bg);
  color: var(--green-accent);
  border-bottom: 4px solid #11973a;
}



.btn-primary {
  background-color: var(--dark-bg);
  color: var(--green-accent);
  border-bottom: 4px solid transparent;
}

.btn-primary:hover {
  background-color: var(--green-accent);
  color: var(--dark-bg);
  border-bottom: 4px solid #11973a;
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--dark-bg);
  border-top: 1px solid var(--gray-text);
  padding: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin-bottom: 1rem;
}

.mobile-nav-item {
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-text);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--green-accent);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 800px;
  max-height: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.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: rgba(13, 12, 13, 0.7);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-dark {
  background-color: var(--dark-bg);
}

.section-gray {
  background-color: var(--gray-text);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
  background-color: var(--gray-text);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-gray .card {
    background-color: var(--dark-bg);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(29, 211, 84, 0.3);
}

.card-icon {
  font-size: 3rem;
  color: var(--green-accent);
  margin-bottom: 1rem;
  text-align: center;
}

.card-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

/* Game Cards */
.game-card {
  background: var(--gray-text);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.image-grid {
  align-items: center;
}

.image-card {
  display: flex !important;
  height: max-content;
  align-items: center;
}

header .container {
  max-width: unset;
}

.game-card:hover {
  transform: scale(1.05);
}

.game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.slot-game-image {
  width: 100%;
  border-radius: 10px;
  height: auto;
  object-fit: cover;
}

.game-info {
  padding: 1rem;
}

.game-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.game-description {
  color: var(--white);
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Tables */
.table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--gray-text);
  border-radius: 10px;
  overflow: hidden;
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--dark-bg);
}

.table th {
  background-color: var(--green-accent);
  color: var(--dark-bg);
  font-weight: bold;
}

.table td {
  color: var(--white);
}

.table tr:hover {
  background-color: var(--dark-bg);
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  border-top: 1px solid var(--gray-text);
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--green-accent);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--white);
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--green-accent);
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.payment-icon {
  background-color: var(--white);
  padding: 0.5rem;
  border-radius: 5px;
  height: 40px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
}

.footer-bottom {
  border-top: 1px solid var(--gray-text);
  padding-top: 1rem;
  color: var(--white);
  opacity: 0.6;
  font-size: 0.8rem;
}

/* Responsive Design */
/* Mobile First Approach */

@media (min-width:1200px) {
  .cta-buttons .btn {
    background-color: var(--dark-bg) !important;
    color: var(--green-accent) !important;
    border-bottom: 4px solid transparent !important;
  }

  .cta-buttons .btn:hover {
    background-color: var(--green-accent) !important;
    color: var(--dark-bg) !important;
    border-bottom: 4px solid #11973a !important;
  }
}

@media (max-width:1200px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border-radius: 20px;
  }


}

/* Mobile: up to 768px */
@media (max-width: 767px) {

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 2rem 0;
  }

  .grid {
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* Tablet: 768px - 1024px */
@media (min-width: 768px) {
  .btn-text {
    display: inline;
  }

  .cta-buttons .btn {
    width: auto;
    height: auto;
    border-radius: 50px;
    font-size: 1rem !important;
  }
}

/* Laptop: 1024px - 1280px */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section {
    padding: 5rem 0;
  }
}

/* Desktop: 1280px+ */
@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }

  .hero-title {
    font-size: 4rem;
  }


}

.btn-text {
  display: none;
}


.cta-buttons .btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-accent);
  color: var(--dark-bg);
}

header .container {
  padding: 0 10px;
}

@media (min-width:440px) {
  .cta-buttons .btn i {
    display: none;
  }

  header {
    background: linear-gradient(110deg,#0d0c0d 80%,#1dd354 0) !important;
  }
  
  header .container {
    padding: 0 1rem !important;
  }
  
  .cta-buttons {
    gap: 1rem;
  }

  .logo {
    height: 15px;
  }

  .cta-buttons .btn {
    width: max-content !important;
    font-size: .85rem;
    border-radius: 50px;
    height: auto;
  }

  .btn-text {
    display: inline;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--green-accent);
  outline-offset: 2px;
}

/* VIP Tier Styles */
.vip-bronze {
  border: 2px solid #CD7F32 !important;
}

.vip-bronze .card-icon,
.vip-bronze .card-title {
  color: #CD7F32 !important;
}

.vip-silver {
  border: 2px solid #C0C0C0 !important;
}

.vip-silver .card-icon,
.vip-silver .card-title {
  color: #C0C0C0 !important;
}

.vip-gold {
  border: 2px solid #FFD700 !important;
}

.vip-gold .card-icon,
.vip-gold .card-title {
  color: #FFD700 !important;
}

.vip-platinum {
  border: 2px solid #E5E4E2 !important;
}

.vip-platinum .card-icon,
.vip-platinum .card-title {
  color: #E5E4E2 !important;
}

/* Text Colors for VIP Tiers */
.text-bronze {
  color: #CD7F32 !important;
}

.text-silver {
  color: #C0C0C0 !important;
}

.text-gold {
  color: #FFD700 !important;
}

.text-platinum {
  color: #E5E4E2 !important;
}

/* Icon Size Variations */
.icon-large {
  font-size: 3rem;
  color: var(--green-accent);
}

.icon-extra-large {
  font-size: 4rem;
}

/* Status Indicators */
.status-check {
  color: #1dd354;
}

.status-times {
  color: #e74c3c;
}

.status-warning {
  color: #ffa500;
}

/* Heart Icon in Footer */
.heart-icon {
  color: #1dd354;
}

/* Image Border Radius */
.image-rounded {
  border-radius: 10px;
} 