/* Slots Real Money Website - CSS Stylesheet */

:root {
  --primary-purple: #4A148C;
  --accent-green: #00E676;
  --dark-bg: #0A0E27;
  --card-bg: #1A1F3A;
  --text-light: #E0E0E0;
  --text-muted: #9E9E9E;
  --border-color: #2C3E50;
  --success: #4CAF50;
  --warning: #FF9800;
  --danger: #F44336;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
}

/* Header & Navigation */
header {
  background: linear-gradient(135deg, var(--primary-purple) 0%, #1A0033 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--accent-green);
  box-shadow: 0 2px 10px rgba(0, 230, 118, 0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-green);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

nav a:hover {
  color: var(--accent-green);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 70vh;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-purple) 0%, #1A0033 100%);
  padding: 4rem 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  text-align: center;
  border-left: 4px solid var(--accent-green);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--accent-green);
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin: 2rem 0 1rem;
  color: var(--accent-green);
}

h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: var(--accent-green);
}

h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--accent-green);
}

h4 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
  color: var(--text-light);
}

/* Paragraphs & Text */
p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

strong {
  color: var(--accent-green);
}

em {
  color: var(--text-muted);
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #00FF88;
}

/* Lists */
ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.7rem;
  line-height: 1.8;
}

/* Slot Review Cards */
.slot-card {
  background: var(--card-bg);
  border-left: 4px solid var(--accent-green);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.slot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.15);
}

.slot-card h3 {
  color: var(--accent-green);
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.rtp-badge {
  background: var(--success);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.slot-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
  font-size: 0.95rem;
}

.meta-item {
  background: rgba(0, 230, 118, 0.05);
  padding: 0.8rem;
  border-left: 2px solid var(--accent-green);
  border-radius: 4px;
}

.meta-item strong {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.volatility-bar {
  width: 100%;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  margin-top: 0.3rem;
  overflow: hidden;
}

.volatility-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--success), var(--warning));
  border-radius: 3px;
}

.volatility-low { width: 30%; }
.volatility-medium { width: 50%; }
.volatility-high { width: 80%; }

.star-rating {
  color: #FFD700;
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

thead {
  background: linear-gradient(135deg, var(--primary-purple) 0%, #1A0033 100%);
}

th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  color: var(--accent-green);
  border-bottom: 2px solid var(--accent-green);
}

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
  background: rgba(0, 230, 118, 0.05);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* Comparison Cards */
.comparison-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.casino-card {
  background: var(--card-bg);
  border-left: 4px solid var(--accent-green);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.casino-card h3 {
  margin-top: 0;
}

.feature-list {
  list-style: none;
  margin-left: 0;
}

.feature-list li::before {
  content: '✓ ';
  color: var(--accent-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-green) 0%, #00DD5F 100%);
  color: var(--dark-bg);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 230, 118, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.5);
  background: linear-gradient(135deg, #00FF88 0%, #00FF66 100%);
}

/* Section Layout */
section {
  margin-bottom: 3rem;
}

section > h2 {
  border-bottom: 2px solid var(--accent-green);
  padding-bottom: 0.5rem;
  display: inline-block;
}

/* Disclaimer & Alert Boxes */
.disclaimer-box {
  background: rgba(244, 67, 54, 0.1);
  border-left: 4px solid #F44336;
  padding: 1.2rem;
  border-radius: 4px;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.info-box {
  background: rgba(0, 230, 118, 0.1);
  border-left: 4px solid var(--accent-green);
  padding: 1.2rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.warning-box {
  background: rgba(255, 152, 0, 0.1);
  border-left: 4px solid #FF9800;
  padding: 1.2rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-purple) 0%, #1A0033 100%);
  color: var(--text-light);
  padding: 2rem;
  margin-top: 3rem;
  border-top: 2px solid var(--accent-green);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  margin-left: 0;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent-green);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* Author Info */
.author-info {
  background: var(--card-bg);
  border-left: 4px solid var(--accent-green);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.author-info strong {
  color: var(--accent-green);
}

/* FAQ Section */
.faq-item {
  background: var(--card-bg);
  border-left: 4px solid var(--accent-green);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent-green);
  font-size: 1.1rem;
}

.faq-item summary:hover {
  color: #00FF88;
}

.faq-item p {
  margin-top: 1rem;
  color: var(--text-light);
}

/* Affiliate Disclosure */
.affiliate-disclosure {
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid #FF9800;
  padding: 1rem;
  border-radius: 4px;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsible Gambling */
.responsible-gaming-banner {
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
  border-left: 4px solid #2196F3;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.responsible-gaming-banner strong {
  color: #64B5F6;
}

.responsible-gaming-banner a {
  color: #64B5F6;
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  nav {
    padding: 0 1rem;
  }

  nav ul {
    gap: 1rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .slot-meta {
    grid-template-columns: 1fr 1fr;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.8rem;
  }

  main {
    padding: 1rem;
  }

  .comparison-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  table {
    font-size: 0.8rem;
  }

  th, td {
    padding: 0.6rem;
  }

  .slot-meta {
    grid-template-columns: 1fr;
  }
}
