/* Template 10 - Golden Luxury Corporate Theme */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:wght@400;500;600;700&display=swap");

:root {
  --gold-primary: #d4af37;
  --gold-light: #f4e4a6;
  --gold-dark: #b8941f;
  --gold-bronze: #cd7f32;
  --gold-cream: #faf8f3;
  --gold-white: #ffffff;
  --gold-black: #1a1a1a;
  --gold-charcoal: #2c2c2c;
  --gold-gray: #6c6c6c;
  --gold-silver: #c0c0c0;

  --shadow-luxury: 0 8px 30px rgba(212, 175, 55, 0.3);
  --shadow-elegant: 0 12px 40px rgba(212, 175, 55, 0.2);
  --shadow-premium: 0 16px 50px rgba(212, 175, 55, 0.4);

  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Cormorant Garamond", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--gold-charcoal);
  background: var(--gold-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Luxury Table Layout */
.luxury-table-wrapper {
  background: var(--gold-white);
  border-radius: 0;
  box-shadow: var(--shadow-luxury);
  overflow: hidden;
  margin: 2rem 0;
  border: 3px solid var(--gold-primary);
}

.luxury-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--gold-white);
}

.luxury-table th {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--gold-white);
  padding: 2rem 1.5rem;
  text-align: left;
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--gold-dark);
}

.luxury-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gold-light);
  transition: all 0.3s ease;
  font-weight: 500;
}

.luxury-table tr:hover td {
  background: var(--gold-cream);
  transform: scale(1.01);
}

.luxury-table tr:last-child td {
  border-bottom: none;
}

/* Premium Header */
.site-header {
  background: linear-gradient(135deg, var(--gold-black) 0%, var(--gold-charcoal) 100%);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-luxury);
  border-bottom: 4px solid var(--gold-primary);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid var(--gold-primary);
  box-shadow: var(--shadow-luxury);
}

.site-name {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  letter-spacing: 2px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

.site-nav a {
  color: var(--gold-white);
  text-decoration: none;
  font-weight: 600;
  padding: 1.2rem 2.5rem;
  border-right: 2px solid var(--gold-primary);
  transition: all 0.3s ease;
  background: var(--gold-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}



.site-nav a:hover::before {
  transform: translateY(0);
}

.site-nav a:hover {
  color: #FFEE96;
}

.site-nav a span {
  position: relative;
  z-index: 2;
}

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

/* Luxury Hero Section */
.section.head {
  padding: 15rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-black) 0%, var(--gold-charcoal) 50%, var(--gold-black) 100%);
  color: var(--gold-white);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  animation: luxuryShimmer 8s ease-in-out infinite;
}

@keyframes luxuryShimmer {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.section.head h1 {
  font-family: var(--font-secondary);
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
  letter-spacing: 3px;
}

.section.head p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Section Styling */
.section {
  padding: 10rem 0;
}

.section:nth-child(even) {
  background: var(--gold-white);
}

.section header {
  text-align: center;
  margin-bottom: 6rem;
}

.section header h2 {
  font-family: var(--font-secondary);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-black);
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: 2px;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  border-radius: 3px;
  box-shadow: var(--shadow-luxury);
}

.section header p {
  font-size: 1.4rem;
  color: var(--gold-gray);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Luxury Casino List */
.casino_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
}

.casino-item {
  width: calc(33.333% - 3rem);
  min-width: 350px;
  background: var(--gold-white);
  border-radius: 0;
  box-shadow: var(--shadow-luxury);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--gold-primary);
}

.casino-item::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-light), var(--gold-dark), var(--gold-primary));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.casino-item:hover::before {
  opacity: 1;
}

.casino-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-premium);
}

.casino-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--gold-white);
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 900;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: var(--shadow-luxury);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
}

.casino-header {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--gold-white);
  border-bottom: 2px solid var(--gold-primary);
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-luxury);
  border: 4px solid var(--gold-primary);
}

.casino-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-premium);
  border-color: var(--gold-light);
}

.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.casino-name {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-black);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.rating .stars {
  width: 140px;
  height: 28px;
  background: var(--gold-cream);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-dark));
  transition: all 0.3s ease;
}

.rating .text {
  color: var(--gold-primary);
  font-weight: 900;
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.casino-body {
  padding: 0 2rem 4rem;
  background: var(--gold-white);
}

.casino-bonus {
  text-align: center;
  margin-bottom: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--gold-black), var(--gold-charcoal));
  color: var(--gold-white);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
}

.casino-bonus::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(from 0deg, transparent, var(--gold-primary), transparent, var(--gold-light), transparent);
  animation: luxuryRotate 6s linear infinite;
  opacity: 0.2;
}

@keyframes luxuryRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.bonus-amount {
  font-size: 2.8rem;
  font-weight: 900;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-secondary);
  position: relative;
  z-index: 2;
  color: var(--gold-primary);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
  letter-spacing: 2px;
}

.free-spins {
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.feature-tag {
  background: var(--gold-cream);
  color: var(--gold-black);
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.feature-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: left 0.5s ease;
}

.feature-tag:hover::before {
  left: 100%;
}

.feature-tag:hover {
  background: var(--gold-primary);
  color: var(--gold-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-luxury);
}

.casino-details {
  margin-bottom: 3rem;
  background: var(--gold-cream);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid var(--gold-primary);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: var(--gold-white);
  transform: translateX(10px);
  box-shadow: inset 5px 0 0 var(--gold-primary);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--gold-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-value {
  color: var(--gold-primary);
  font-weight: 900;
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.casino-action {
  text-align: center;
}

.casino-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--gold-black);
  padding: 2rem 4rem;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: var(--shadow-luxury);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold-dark);
}

.casino-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.casino-button:hover::before {
  left: 100%;
}

.casino-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-premium);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

/* FAQ Section */
.faq_list {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gold-white);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-luxury);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 3px solid var(--gold-primary);
}

.faq-item:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-5px);
}

.accordion-question {
  background: none;
  border: none;
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-black);
  padding: 2.5rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accordion-question:hover {
  background: var(--gold-cream);
  color: var(--gold-primary);
}

.accordion-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-luxury);
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--gold-white);
  transition: all 0.3s ease;
}

.accordion-icon::before {
  width: 18px;
  height: 3px;
}

.accordion-icon::after {
  width: 3px;
  height: 18px;
}

.faq-item.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--gold-dark);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2.5rem;
  color: var(--gold-gray);
  line-height: 1.8;
  font-weight: 500;
}

.faq-item.active .accordion-answer {
  max-height: 400px;
  padding: 0 2.5rem 2.5rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--gold-black) 0%, var(--gold-charcoal) 100%);
  color: var(--gold-white);
  padding: 6rem 0 3rem;
  position: relative;
  border-top: 6px solid var(--gold-primary);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-dark), var(--gold-primary));
  animation: luxuryFlow 4s ease-in-out infinite;
}

@keyframes luxuryFlow {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.footer-about {
  flex: 1;
  max-width: 500px;
}

.footer-tagline {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--gold-white);
  text-decoration: none;
  font-weight: 600;
  padding: 1.2rem 2.5rem;
  transition: all 0.3s ease;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  background: var(--gold-primary);
  color: var(--gold-black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-luxury);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 2px solid var(--gold-primary);
}

.copyright a {
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Animations */
@keyframes fadeInLuxury {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInLuxury 1s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

/* Text Content */
.text-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem;
  background: var(--gold-white);
  border: 3px solid var(--gold-primary);
  box-shadow: var(--shadow-luxury);
}

.text-content h3 {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-black);
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.text-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--gold-gray);
  margin-bottom: 2rem;
  font-weight: 500;
}

.text-content ul {
  list-style: none;
  padding-left: 0;
}

.text-content li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gold-light);
  position: relative;
  padding-left: 3rem;
  font-weight: 500;
  color: var(--gold-gray);
}

.text-content li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 1.2rem;
  font-weight: 900;
}

/* Anchor Menu */
.anchor-menu {
  position: fixed;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  background: var(--gold-white);
  border: 3px solid var(--gold-primary);
  box-shadow: var(--shadow-luxury);
  padding: 2rem 0;
}

.anchor-menu ul {
  list-style: none;
}

.anchor-menu a {
  display: block;
  padding: 1.5rem 2.5rem;
  color: var(--gold-black);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.anchor-menu a:hover {
  background: var(--gold-primary);
  color: var(--gold-white);
  transform: translateX(-10px);
}

.anchor-menu li:last-child a {
  border-bottom: none;
}

/* Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: var(--gold-white);
  max-width: 600px;
  width: 90%;
  padding: 4rem;
  position: relative;
  border: 4px solid var(--gold-primary);
  box-shadow: var(--shadow-premium);
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--gold-primary);
  color: var(--gold-white);
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 900;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: var(--gold-dark);
  transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .casino-item {
    width: calc(50% - 2rem);
  }

  .anchor-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .casino-item {
    width: 100%;
    min-width: auto;
  }

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

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

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

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