/* ========================================
   ListCasinosCa.com - Modern Casino Style
   ======================================== */

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

:root {
    --clr-bg-dark: #0d1117;
    --clr-bg-card: #161b22;
    --clr-bg-hover: #21262d;
    --clr-gold: #d4af37;
    --clr-gold-light: #f0d77c;
    --clr-emerald: #10b981;
    --clr-emerald-dark: #059669;
    --clr-text: #e6edf3;
    --clr-text-muted: #8b949e;
    --clr-border: #30363d;
    --clr-accent: #ff6b35;
    --clr-danger: #f85149;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg-dark);
    color: var(--clr-text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

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

a:hover {
    color: var(--clr-gold-light);
}

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

/* Container */
.container {
    width: min(90%, 1280px);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-emerald));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo span {
    color: var(--clr-gold);
}

/* Navigation */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--clr-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

.main-nav a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--clr-text);
    background: var(--clr-bg-hover);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-gold), #c9a227);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    color: #000;
}

.btn-secondary {
    background: var(--clr-bg-hover);
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
}

.btn-secondary:hover {
    background: var(--clr-border);
    color: var(--clr-text);
}

.btn-emerald {
    background: linear-gradient(135deg, var(--clr-emerald), var(--clr-emerald-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
    color: #fff;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--clr-text), var(--clr-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.badge-icon {
    font-size: 1rem;
}

.hero-image {
    position: relative;
}

.hero-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-glow);
}

.hero-card img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.hero-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-card-content p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* Quick Answers Section */
.quick-answers {
    padding: 3rem 0;
    background: var(--clr-bg-card);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.quick-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--clr-bg-dark);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}

.quick-item:hover {
    border-color: var(--clr-gold);
    transform: translateY(-3px);
}

.quick-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.quick-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.quick-item p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Casino Cards Grid */
.casinos-section {
    padding: 5rem 0;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.casino-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.casino-card:hover {
    border-color: var(--clr-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    border-bottom: 1px solid var(--clr-border);
}

.casino-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--clr-bg-dark);
}

.casino-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--clr-gold);
    font-size: 0.9rem;
}

.rating-num {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.casino-body {
    padding: 1.5rem;
    flex: 1;
}

.casino-bonus {
    background: linear-gradient(135deg, var(--clr-emerald), var(--clr-emerald-dark));
    color: #fff;
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 1.25rem;
}

.casino-bonus strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.casino-bonus span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.casino-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.casino-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.casino-features li::before {
    content: '✓';
    color: var(--clr-emerald);
    font-weight: bold;
}

.casino-footer {
    padding: 1rem 1.5rem;
    background: var(--clr-bg-hover);
    display: flex;
    gap: 0.75rem;
}

.casino-footer .btn {
    flex: 1;
}

/* Navigation Hub */
.nav-hub {
    padding: 5rem 0;
    background: var(--clr-bg-card);
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hub-card {
    background: var(--clr-bg-dark);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.hub-card:hover {
    border-color: var(--clr-emerald);
    transform: translateY(-5px);
}

.hub-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hub-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.hub-card p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 1.25rem;
}

/* Info Table */
.info-table-section {
    padding: 5rem 0;
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.info-table th,
.info-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.info-table th {
    background: var(--clr-bg-hover);
    font-weight: 600;
    color: var(--clr-gold);
    border-bottom: 1px solid var(--clr-border);
}

.info-table td {
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
}

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

.info-table tr:hover td {
    background: var(--clr-bg-hover);
}

.info-table td:first-child {
    font-weight: 500;
    color: var(--clr-text);
}

/* Safety Checklist */
.safety-section {
    padding: 5rem 0;
    background: var(--clr-bg-card);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--clr-bg-dark);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.safety-num {
    width: 32px;
    height: 32px;
    background: var(--clr-emerald);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.safety-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.safety-item p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

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

.faq-item {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--clr-bg-hover);
}

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

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

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Author Box */
.author-box {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-gold);
}

.author-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-title {
    color: var(--clr-emerald);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.author-content p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.author-link {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Meta Info */
.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    margin: 2rem 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.meta-item strong {
    color: var(--clr-text);
}

/* Disclaimer */
.disclaimer {
    background: rgba(248, 81, 73, 0.1);
    border: 1px solid rgba(248, 81, 73, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer h4 {
    color: var(--clr-danger);
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer p {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

/* Footer */
.site-footer {
    background: var(--clr-bg-card);
    border-top: 1px solid var(--clr-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin: 1rem 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--clr-bg-hover);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--clr-gold);
    color: #000;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--clr-text);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--clr-gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badges img {
    height: 35px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-badges img:hover {
    opacity: 1;
}

/* Content Pages */
.page-header {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--clr-bg-card), var(--clr-bg-dark));
    border-bottom: 1px solid var(--clr-border);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--clr-text-muted);
    max-width: 700px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

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

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

.page-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

.main-content {
    max-width: 100%;
}

.main-content h2 {
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
}

.main-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
}

.main-content p {
    margin-bottom: 1.25rem;
    color: var(--clr-text-muted);
}

.main-content ul,
.main-content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
    color: var(--clr-text-muted);
}

.main-content li {
    margin-bottom: 0.5rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--clr-border);
}

.sidebar-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(16, 185, 129, 0.1));
    text-align: center;
}

.sidebar-cta p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--clr-bg-dark);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
}

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

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.slot-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.slot-card:hover {
    border-color: var(--clr-gold);
    transform: translateY(-3px);
}

.slot-image {
    aspect-ratio: 4/3;
    background: var(--clr-bg-hover);
    overflow: hidden;
}

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

.slot-info {
    padding: 1rem;
}

.slot-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.slot-info p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.slot-rtp {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    color: var(--clr-emerald);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* Play Now CTA */
.play-cta {
    background: linear-gradient(135deg, var(--clr-bg-card), rgba(212, 175, 55, 0.1));
    border: 1px solid var(--clr-gold);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.play-cta h3 {
    margin-bottom: 1rem;
}

.play-cta p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 2rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--clr-bg-dark);
        border-bottom: 1px solid var(--clr-border);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav a {
        padding: 0.85rem 1rem;
    }
    
    .header-cta .btn {
        display: none;
    }
    
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hub-grid {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .quick-grid {
        grid-template-columns: 1fr;
    }
    
    .slots-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-header {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-footer {
        flex-direction: column;
    }
}
