/* Template 6 - Tech Orange Theme */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Exo+2:wght@400;600;700;800&display=swap");

:root {
  --tech-orange: #ff6b35;
  --bright-orange: #ff8c42;
  --dark-orange: #e55a2b;
  --charcoal: #2c3e50;
  --dark-charcoal: #1a252f;
  --light-charcoal: #34495e;
  --tech-blue: #3498db;
  --white: #ffffff;
  --light-gray: #ecf0f1;
  --text-light: #bdc3c7;

  --shadow-tech: 0 4px 12px rgba(255, 107, 53, 0.2);
  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 10px 30px rgba(255, 107, 53, 0.3);

  --font-tech: "Exo 2", sans-serif;
  --font-body: "Roboto", sans-serif;
}

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

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

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

a {
  color: var(--tech-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--bright-orange);
}

.main {
  flex: 1;
}

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

/* Header */
.header {
  background: var(--charcoal);
  border-bottom: 3px solid var(--tech-orange);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-card);
}

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

.site-logo {
  font-family: var(--font-tech);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--tech-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo a {
  color: var(--tech-orange);
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

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

.site-nav a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  display: block;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-nav a:hover {
  background: var(--tech-orange);
  color: var(--white);
}

/* Hero Section */
.section.head {
  padding: 4.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--light-charcoal) 100%);
  border-bottom: 4px solid var(--tech-orange);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.section.head h1 {
  font-family: var(--font-tech);
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.section.head h1 span {
  color: var(--tech-orange);
}

.section.head p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

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

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

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

.section header h2 {
  font-family: var(--font-tech);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--tech-orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.125rem;
}

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

.casino-item {
  width: calc(33.333% - 1.5rem);
  min-width: 320px;
  background: var(--charcoal);
  border: 2px solid var(--light-charcoal);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  position: relative;
}

.casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--tech-orange) 0%, var(--bright-orange) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.casino-item:hover::before {
  transform: scaleX(1);
}

.casino-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--tech-orange);
}

.casino-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--tech-orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-header {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--light-charcoal);
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 5px;
  background: var(--dark-charcoal);
  transition: all 0.3s ease;
  border: 2px solid var(--light-charcoal);
}

.casino-logo:hover {
  border-color: var(--tech-orange);
  box-shadow: var(--shadow-tech);
}

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

.casino-name {
  font-family: var(--font-tech);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

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

.rating .stars {
  width: 120px;
  height: 20px;
  background: var(--dark-charcoal);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--light-charcoal);
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--tech-orange) 0%, var(--bright-orange) 100%);
  transition: width 0.4s ease;
}

.rating .text {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 700;
}

.casino-body {
  padding: 2rem 1.5rem;
}

.casino-bonus {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--dark-orange) 0%, var(--tech-orange) 100%);
  border-radius: 8px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.casino-bonus::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: rotate(45deg);
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-tech);
  text-transform: uppercase;
}

.free-spins {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

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

.feature-tag {
  background: var(--light-charcoal);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--light-charcoal);
}

.feature-tag:hover {
  background: var(--tech-orange);
  color: var(--white);
  border-color: var(--tech-orange);
  transform: scale(1.05);
}

.casino-details {
  margin-bottom: 2rem;
  border: 1px solid var(--light-charcoal);
  border-radius: 8px;
  overflow: hidden;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--light-charcoal);
  transition: background 0.3s ease;
}

.detail-item:hover {
  background: var(--light-charcoal);
}

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

.detail-label {
  color: var(--text-light);
  font-weight: 500;
}

.detail-value {
  color: var(--tech-orange);
  font-weight: 700;
}

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

.casino-button {
  display: inline-block;
  background: var(--tech-orange);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-tech);
  position: relative;
  overflow: hidden;
}

.casino-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--bright-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 0;
}

.casino-button:hover::before {
  width: 300px;
  height: 300px;
}

.casino-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-tech);
}

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

.faq-item {
  background: var(--charcoal);
  border: 1px solid var(--light-charcoal);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--tech-orange);
}

.accordion-question {
  background: var(--charcoal);
  border: none;
  font-family: var(--font-tech);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-question:hover {
  background: var(--light-charcoal);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  background: var(--tech-orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

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

.accordion-icon::before {
  width: 14px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 14px;
}

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

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

/* Footer */
.footer {
  background: var(--charcoal);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--tech-orange);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-column {
  width: 100%;
  max-width: 300px;
  margin-bottom: 2rem;
}

.footer-title {
  font-family: var(--font-tech);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--tech-orange);
  text-transform: uppercase;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--light-charcoal);
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Animations */
@keyframes slideInTech {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: slideInTech 0.6s 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;
}

/* H3 Styling */
h3 {
  font-size: 2.2rem;
  color: var(--tech-orange);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: left;
  font-family: var(--font-tech);
  font-weight: 700;
  text-transform: uppercase;
}

.footer-columns {
  display: flex;
  align-items: flex-start;
}

.footer-links {
  margin-left: auto;
}


.section.head { transform: none !important; }