/* CasinoEng.com - Main Stylesheet */
/* Unique Design for UK Live Casino Reviews */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary-gold: #d4af37;
    --primary-dark: #0f1923;
    --secondary-dark: #1a2634;
    --accent-emerald: #2ecc71;
    --accent-ruby: #e74c3c;
    --text-light: #f8f9fa;
    --text-muted: #a8b2bd;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f5d67b 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(180deg, #0f1923 0%, #1a2634 100%);
    --gradient-card: linear-gradient(145deg, #1e2d3d 0%, #152029 100%);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--gradient-dark);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #f5d67b;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 0;
    transition: var(--transition);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 155px;
    height: 80px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
}

/* Burger Menu */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 3px;
    transition: var(--transition);
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-image {
    flex: 0 0 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.hero-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Primary CTA Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: var(--primary-dark);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

/* Casino Cards Section */
.casino-section {
    padding: 80px 0;
    background: var(--secondary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gold-accent {
    color: var(--primary-gold);
}

/* Casino Card */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

.casino-card:hover {
    transform: translateX(8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-card);
}

.casino-rank {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
}

.casino-logo {
    flex: 0 0 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.casino-info {
    flex: 1;
    min-width: 0;
}

.casino-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.casino-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    padding: 4px 12px;
    background: rgba(46, 204, 113, 0.15);
    color: var(--accent-emerald);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
}

.casino-rating {
    flex: 0 0 100px;
    text-align: center;
}

.rating-stars {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.rating-score {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-gold);
}

.casino-cta {
    flex: 0 0 auto;
}

/* Info Blocks */
.info-section {
    padding: 80px 0;
    background: var(--primary-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-gold);
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Tables */
.table-section {
    padding: 80px 0;
    background: var(--secondary-dark);
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.styled-table thead {
    background: rgba(212, 175, 55, 0.2);
}

.styled-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.styled-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.styled-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

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

/* Table Responsive */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Safety Checklist */
.checklist-section {
    padding: 80px 0;
    background: var(--primary-dark);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--gradient-card);
    border-radius: 10px;
    border-left: 3px solid var(--accent-emerald);
}

.check-icon {
    flex: 0 0 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 204, 113, 0.2);
    color: var(--accent-emerald);
    border-radius: 50%;
    font-weight: 700;
}

.checklist-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--secondary-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 25px 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Author Box */
.author-section {
    padding: 80px 0;
    background: var(--primary-dark);
}

.author-box {
    display: flex;
    align-items: center;
    gap: 35px;
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.author-photo {
    flex: 0 0 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-gold);
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.author-info h3 a {
    color: inherit;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.author-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 8px 16px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 20px;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 20px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-ruby);
}

.age-badge {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-ruby);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
}

.age-restriction p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.age-restriction a {
    color: var(--accent-ruby);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--secondary-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-light);
}

.reviewer-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-rating {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

/* Footer */
.site-footer {
    background: #0a1219;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 15px;
    max-width: 300px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-item {
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.slot-card {
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.slot-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-gold);
}

.slot-image {
    height: 180px;
    overflow: hidden;
    background: #1e2d3d;
}

.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.slot-card:hover .slot-image img {
    transform: scale(1.08);
}

.slot-content {
    padding: 20px;
}

.slot-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.slot-provider {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.slot-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slot-card .btn-secondary {
    width: 100%;
    justify-content: center;
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background: rgba(15, 25, 35, 0.5);
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--primary-gold);
}

.breadcrumbs li:last-child {
    color: var(--primary-gold);
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: var(--primary-dark);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-gold);
}

.content-wrapper h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-light);
}

.content-wrapper p {
    margin-bottom: 18px;
    color: var(--text-muted);
}

.content-wrapper ul, .content-wrapper ol {
    margin: 0 0 20px 25px;
    color: var(--text-muted);
}

.content-wrapper li {
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* 404 Page */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content h1 {
    font-size: clamp(6rem, 20vw, 12rem);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.error-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsible Gaming */
.rg-box {
    background: rgba(46, 204, 113, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-emerald);
}

.rg-box h3 {
    color: var(--accent-emerald);
    margin-bottom: 15px;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-text {
        margin: 0 auto 30px;
    }
    
    .hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--primary-dark);
        padding: 100px 30px 40px;
        gap: 5px;
        transition: var(--transition);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 14px 20px;
    }
    
    .casino-card {
        flex-wrap: wrap;
    }
    
    .casino-rank {
        order: 1;
    }
    
    .casino-logo {
        order: 2;
        flex: 0 0 100px;
    }
    
    .casino-info {
        order: 4;
        flex: 1 1 100%;
    }
    
    .casino-rating {
        order: 3;
        flex: 1;
        text-align: right;
    }
    
    .casino-cta {
        order: 5;
        flex: 1 1 100%;
        margin-top: 15px;
    }
    
    .casino-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 15px auto 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .casino-section,
    .info-section,
    .table-section,
    .checklist-section,
    .faq-section,
    .author-section,
    .reviews-section,
    .content-section {
        padding: 50px 0;
    }
    
    .casino-card {
        padding: 20px;
        gap: 15px;
    }
    
    .casino-logo {
        flex: 0 0 80px;
        height: 60px;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .styled-table th,
    .styled-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 350px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .casino-card {
        padding: 15px;
    }
}
