/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f1419;
    --secondary-color: #1a2332;
    --accent-color: #c9a86a;
    --accent-hover: #b89555;
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-light: #ffffff;
    --background-light: #fafbfc;
    --border-color: #e8eaed;
    --hero-gradient-start: #1a2332;
    --hero-gradient-end: #2d3e50;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(to bottom, #fafbfc 0%, #f5f7fa 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Header Styles */
.header {
    background-color: var(--primary-color);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo-image {
    width: 42px;
    height: 42px;
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: rotate(5deg) scale(1.05);
}

.logo h2 {
    color: var(--accent-color);
    font-size: 1.75rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-desktop a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), rgba(201, 168, 106, 0.5));
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(201, 168, 106, 0.3);
}

.nav-desktop a:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background-color: var(--text-light);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    background-color: var(--secondary-color);
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    padding: 2rem 0;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav-mobile.active {
    transform: translateY(0);
}

.nav-mobile ul {
    list-style: none;
    text-align: center;
}

.nav-mobile li {
    margin: 1.5rem 0;
}

.nav-mobile a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-mobile a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(201,168,106,0.15)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Review Section */
.review-section {
    padding: 4rem 0;
    background: transparent;
}

.review-content-simple {
    max-width: 900px;
    margin: 0 auto;
}

.review-content-simple h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.review-content-simple h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    padding-left: 0;
}

.review-content-simple p {
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    text-align: justify;
}

/* Bullet and Numbered Lists */
.review-content-simple ul:not(.pros-list):not(.cons-list) {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.review-content-simple ul:not(.pros-list):not(.cons-list) li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.7;
}

.review-content-simple ul:not(.pros-list):not(.cons-list) li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.review-content-simple ol {
    list-style: none;
    counter-reset: list-counter;
    padding-left: 0;
    margin: 1.5rem 0;
}

.review-content-simple ol li {
    padding: 0.5rem 0 0.5rem 2.5rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.7;
    counter-increment: list-counter;
}

.review-content-simple ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 2rem;
}

/* Nested lists */
.review-content-simple ul:not(.pros-list):not(.cons-list) ul,
.review-content-simple ol ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.review-content-simple ul:not(.pros-list):not(.cons-list) ul li::before {
    content: '◦';
    font-size: 1.2rem;
}

/* Image Styles */
.review-content-simple img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.review-content-simple img:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

/* Image with caption */
.review-content-simple figure {
    margin: 2rem 0;
}

.review-content-simple figure img {
    margin-bottom: 0.75rem;
}

.review-content-simple figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Responsive images */
@media (max-width: 768px) {
    .review-content-simple img {
        margin: 1.5rem auto;
    }
}

/* Pros and Cons inside Review Section */
.review-content-simple .pros-cons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0 2rem;
}

.review-content-simple .pros-box,
.review-content-simple .cons-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.review-content-simple .pros-box:hover,
.review-content-simple .cons-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.review-content-simple .pros-box {
    border-top: 4px solid #4caf50;
}

.review-content-simple .cons-box {
    border-top: 4px solid #f44336;
}

.review-content-simple .pros-header,
.review-content-simple .cons-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.review-content-simple .pros-header h3,
.review-content-simple .cons-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.review-content-simple .icon-check,
.review-content-simple .icon-cross {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.review-content-simple .icon-check {
    color: #4caf50;
}

.review-content-simple .icon-cross {
    color: #f44336;
}

.review-content-simple .pros-list,
.review-content-simple .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-content-simple .pros-list li,
.review-content-simple .cons-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.review-content-simple .pros-list li:last-child,
.review-content-simple .cons-list li:last-child {
    border-bottom: none;
}

.review-content-simple .pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-content-simple .cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

thead th {
    color: var(--text-light);
    font-weight: 600;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent-color);
}

tbody tr {
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background-color: rgba(201, 168, 106, 0.05);
}

tbody td {
    padding: 1.25rem 1.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    vertical-align: top;
}

tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

tbody tr:nth-child(even):hover {
    background-color: rgba(201, 168, 106, 0.05);
}

/* Responsive table */
@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
    }
    
    thead th,
    tbody td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    thead th,
    tbody td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a0e13 100%);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 106, 0.1);
    border: 1px solid rgba(201, 168, 106, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    font-weight: 600;
}

.social-links a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }

    /* Header */
    .nav-desktop {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .nav-mobile {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 3rem 0;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Review Section */
    .review-section {
        padding: 3rem 0;
    }

    /* Pros and Cons Mobile */
    .review-content-simple .pros-cons-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-content-simple .pros-box,
    .review-content-simple .cons-box {
        padding: 1.5rem;
    }
    
    .review-content-simple .pros-header h3,
    .review-content-simple .cons-header h3 {
        font-size: 1.3rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .review-content-simple p {
        text-align: left;
    }

    /* Pros and Cons Small Mobile */
    .review-content-simple .pros-box,
    .review-content-simple .cons-box {
        padding: 1.25rem;
    }
    
    .review-content-simple .pros-list li,
    .review-content-simple .cons-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
}





    /* 1) Casino TOP Styles */

/* 2) Wrapper */
.casino-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* 3) Card */
.casino-card {
  position: relative;              /* for rank badge */
  display: flex;
  flex-direction: row;
  background: #212936;             /* card background */
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  border-left: 4px solid #4e80ee;  /* accent border */
}

/* 4) Rank badge */
.rank {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: #4e80ee;             /* primary accent */
  color: #ffffff;
  border-radius: 0 0 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* 5) Image column and responsive tweaks */
.card-image {
  flex: 0 0 20%;                   /* ~20% of card width */
  max-width: 240px;                /* desktop limit */
  min-width: 120px;                /* mobile limit */
  aspect-ratio: 1 / 1;             /* square */
  background: #f7f7f7;             /* neutral frame */
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .card-image {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0 auto 1rem;
  }
}

/* 6) Main content area - FIXED: Using CSS Grid for consistent layout */
.card-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 180px 200px; /* casino-info | offers | actions */
  align-items: center;
  padding: 1rem;
  gap: 2rem;
}

/* 7) Casino info (title + rating) */
.casino-info {
  display: flex;
  flex-direction: column;
  min-width: 0; /* Allow text to wrap/truncate if needed */
}
.casino-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffffff;
}
.rating {
  margin-top: 0.25rem;
  display: flex;
}
.rating .star {
  color: #FFD700;
  font-size: 1rem;
  margin-right: 2px;
}

/* 8) Offers block - FIXED: Removed auto margins */
.offers {
  width: 180px;
  padding: 1rem 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(140, 172, 229, 0.1);
  border: 1px solid #4e80ee;
  border-radius: 4px;
  justify-self: center; /* Center within its grid cell */
}
.offers .bonus,
.offers .freespins {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.offers .bonus::before,
.offers .freespins::before {
  content: attr(data-label);
  font-size: 1.25rem;
  font-weight: bold;
  color: #4e80ee;
  margin-bottom: 0.25rem;
}
.offers .amount {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}

/* 9) Actions (buttons + disclaimer) - FIXED: Positioned in grid */
.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  justify-self: center; /* Center within its grid cell */
}
.btn-primary,
.btn-secondary {
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn-primary {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  background: linear-gradient(45deg, #4e80ee, #8cace5);
  color: #ffffff;
  animation: earthquake 4s ease-in-out infinite;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #8cace5, #4e80ee);
}
.btn-secondary {
  width: 160px;
  padding: 0.75rem;
  font-size: 0.85rem;
  background: #212936;
  color: #8cace5;
  border: 1px solid #8cace5;
}
.btn-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.disclaimer {
  font-size: 0.75rem;
  color: #ffffff;
  margin-top: 0.5rem;
  text-align: center;
}

/* 10) Shake animation */
@keyframes earthquake {
  0%   { transform: translate(0, 0) rotate(0deg); }
  2%   { transform: translate(-2px, 1px) rotate(-1deg); }
  4%   { transform: translate(-2px, -1px) rotate(1deg); }
  6%   { transform: translate(2px, 1px) rotate(0deg); }
  8%   { transform: translate(2px, -1px) rotate(1deg); }
  10%  { transform: translate(-2px, 1px) rotate(-1deg); }
  11%, 100% { transform: translate(0, 0) rotate(0deg); }
}

/* 11) Mobile adaptation - FIXED: Better responsive grid */
@media (max-width: 768px) {
  .casino-card {
    flex-direction: column;
  }
  .card-content {
    display: flex; /* Switch back to flexbox on mobile */
    flex-direction: column;
    gap: 1rem;
  }
  .casino-info {
    align-items: center;
    text-align: center;
  }
  .offers {
    width: 80%;
    margin: 0 auto 1rem;
  }
  .actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 48%;
  }
  .disclaimer {
    order: 1;
    width: 100%;
    margin-top: 0.75rem;
  }
}

/* Section title */
.section-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #212936;
  text-align: center;
  margin: 2rem 0 1rem;
}







/* Casino Review Hero Section */
.casino-hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.casino-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(201,168,106,0.15)"/></svg>');
    opacity: 0.4;
}

.casino-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Casino Logo Section */
.casino-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.casino-logo {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.casino-logo img {
    display: block;
    max-width: 120px;
    height: auto;
}

.casino-logo-section h1 {
    font-size: 1.75rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 700;
}

/* Casino Info Grid */
.casino-info-grid {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Rating Box */
.casino-rating-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-label {
    display: none;
}

.star-rating {
    display: flex;
    gap: 0.15rem;
}

.star {
    font-size: 1.5rem;
    color: #e0e0e0;
}

.star.filled {
    color: var(--accent-color);
}

.star.half {
    background: linear-gradient(90deg, var(--accent-color) 50%, #e0e0e0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-score {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-left: 0.25rem;
}

/* Welcome Bonus Box */
.welcome-bonus-box {
    background: rgba(15, 20, 25, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 106, 0.3);
}

.bonus-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.bonus-amount {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    color: var(--accent-color);
}

.bonus-details {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.casino-cta-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.play-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
}

.play-button:active {
    transform: translateY(0);
}

.play-icon {
    font-size: 0.9rem;
}

.cta-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .casino-hero-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .casino-logo-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .casino-info-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .casino-cta-section {
        align-items: center;
        width: 100%;
    }
    
    .cta-disclaimer {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .casino-hero {
        padding: 1.5rem 0;
    }
    
    .casino-hero-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .casino-logo-section h1 {
        font-size: 1.5rem;
    }
    
    .casino-info-grid {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .casino-rating-box {
        justify-content: center;
    }
    
    .welcome-bonus-box {
        text-align: center;
        width: 100%;
    }
    
    .play-button {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .casino-logo img {
        max-width: 100px;
    }
    
    .casino-logo-section h1 {
        font-size: 1.3rem;
    }
    
    .star {
        font-size: 1.25rem;
    }
    
    .rating-score {
        font-size: 1rem;
    }
    
    .bonus-amount {
        font-size: 1rem;
    }
    
    .play-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}