/* Template 10 - Golden Luxury Corporate Theme - Media Queries */

/* Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  .casino-item {
    width: calc(33.333% - 3rem);
  }

  .section.head h1 {
    font-size: 6rem;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }

  .casino-item {
    width: calc(50% - 2rem);
    min-width: 320px;
  }

  .section.head {
    padding: 12rem 0;
  }

  .section.head h1 {
    font-size: 4.5rem;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .site-header {
    padding: 1.5rem 0;
  }

  .header-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .casino-item {
    width: calc(50% - 1.5rem);
  }

  .casino-logo {
    width: 320px;
    height: 110px;
  }

  .section {
    padding: 8rem 0;
  }

  .section.head {
    padding: 10rem 0;
  }

  .section.head h1 {
    font-size: 4rem;
  }

  .anchor-menu {
    display: none;
  }

  .luxury-table-wrapper {
    overflow-x: auto;
  }

  .luxury-table {
    min-width: 600px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .casino_list {
    gap: 2rem;
  }

  .casino-item {
    width: 100%;
    min-width: auto;
  }

  .casino-logo {
    width: 300px;
    height: 100px;
  }

  .section {
    padding: 6rem 0;
  }

  .section.head {
    padding: 8rem 0;
  }

  .section.head h1 {
    font-size: 3.5rem;
    letter-spacing: 1px;
  }

  .section.head p {
    font-size: 1.3rem;
  }

  .section header h2 {
    font-size: 3rem;
  }

  .site-name {
    font-size: 2rem;
  }

  .site-nav ul {
    flex-direction: column;
    width: 100%;
  }

  .site-nav a {
    border-right: none;
    border-bottom: 2px solid var(--gold-primary);
  }

  .site-nav li:last-child a {
    border-bottom: none;
  }

  .footer-columns {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 1rem;
  }

  .casino-features {
    gap: 0.8rem;
  }

  .feature-tag {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }

  .casino-button {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
  }

  .popup-content {
    padding: 3rem;
    margin: 2rem;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .casino-logo {
    width: 280px;
    height: 90px;
  }

  .section.head h1 {
    font-size: 2.8rem;
  }

  .section header h2 {
    font-size: 2.5rem;
  }

  .casino-header {
    padding: 3rem 1.5rem;
  }

  .casino-body {
    padding: 0 1.5rem 3rem;
  }

  .casino-bonus {
    padding: 2rem;
  }

  .bonus-amount {
    font-size: 2.2rem;
  }

  .accordion-question {
    padding: 2rem;
    font-size: 1.2rem;
  }

  .detail-item {
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .luxury-table th,
  .luxury-table td {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .popup-content {
    padding: 2rem;
    margin: 1rem;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .footer,
  .anchor-menu,
  .popup-overlay {
    display: none;
  }

  .section {
    padding: 2rem 0;
    break-inside: avoid;
  }

  .casino-item {
    width: 100%;
    margin-bottom: 2rem;
    break-inside: avoid;
  }

  body {
    background: white;
    color: black;
  }
}
