/* ==========================================
   CasinoRanks.uk - Premium Casino Comparison
   Dark Theme with Gold Accents
   ========================================== */

/* CSS Custom Properties */
:root {
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-card: #1a1a25;
    --color-bg-card-hover: #222230;
    
    --color-gold: #d4af37;
    --color-gold-light: #f4d03f;
    --color-gold-dark: #b8960c;
    
    --color-accent: #e8c547;
    --color-accent-secondary: #c9a227;
    
    --color-text-primary: #f5f5f7;
    --color-text-secondary: #a0a0a8;
    --color-text-muted: #6b6b75;
    
    --color-border: #2a2a35;
    --color-border-light: #3a3a48;
    
    --color-success: #4ade80;
    --color-warning: #fbbf24;
    --color-danger: #f87171;
    --color-info: #60a5fa;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    color: var(--color-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-normal);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212, 175, 55, 0.1), transparent),
        linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(212, 175, 55, 0.03) 100px,
            rgba(212, 175, 55, 0.03) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(212, 175, 55, 0.03) 100px,
            rgba(212, 175, 55, 0.03) 101px
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.1s backwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-title .highlight {
    color: var(--color-gold);
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    animation: fadeIn 1s ease 1s backwards;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-border-light);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg-primary);
    box-shadow: var(--shadow-gold);
}

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

.btn-casino {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-secondary) 100%);
    color: var(--color-bg-primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.btn-casino:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: translateY(-1px);
    color: var(--color-bg-primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-bg-primary);
}

/* ==========================================
   Disclaimer Banner
   ========================================== */
.disclaimer-banner {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
}

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

.disclaimer-banner strong {
    color: var(--color-warning);
}

/* ==========================================
   Casino Section
   ========================================== */
.casino-section {
    padding: 80px 0;
    background: var(--color-bg-primary);
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 16px;
}

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

.casino-grid {
    display: grid;
    gap: 24px;
}

/* ==========================================
   Casino Cards
   ========================================== */
.casino-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-normal);
    animation: fadeInUp 0.6s ease backwards;
}

.casino-card:nth-child(1) { animation-delay: 0.1s; }
.casino-card:nth-child(2) { animation-delay: 0.15s; }
.casino-card:nth-child(3) { animation-delay: 0.2s; }
.casino-card:nth-child(4) { animation-delay: 0.25s; }
.casino-card:nth-child(5) { animation-delay: 0.3s; }
.casino-card:nth-child(6) { animation-delay: 0.35s; }
.casino-card:nth-child(7) { animation-delay: 0.4s; }
.casino-card:nth-child(8) { animation-delay: 0.45s; }
.casino-card:nth-child(9) { animation-delay: 0.5s; }
.casino-card:nth-child(10) { animation-delay: 0.55s; }

.casino-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.1);
}

.casino-card[data-rank="1"] {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.casino-card[data-rank="1"]::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--color-gold) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card-rank {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rank-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.8;
}

.rank-badge {
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rank-badge.hot {
    background: rgba(248, 113, 113, 0.15);
    border-color: rgba(248, 113, 113, 0.3);
    color: var(--color-danger);
}

.rank-badge.new {
    background: rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.3);
    color: var(--color-info);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.brand-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
}

.card-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.card-body {
    margin-bottom: 24px;
}

.bonus-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.bonus-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bonus-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.bonus-extra {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.features-list li {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.features-list li::first-letter {
    color: var(--color-success);
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tc-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* ==========================================
   Review Section
   ========================================== */
.review-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

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

.review-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-normal);
}

.review-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-4px);
}

.review-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.review-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ==========================================
   Responsible Gambling Section
   ========================================== */
.responsible-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.05) 0%, var(--color-bg-primary) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.responsible-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.responsible-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.responsible-content p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.responsible-links a {
    padding: 10px 20px;
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-danger);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.responsible-links a:hover {
    background: rgba(248, 113, 113, 0.2);
    color: var(--color-danger);
}

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

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--color-bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--color-border);
}

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

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

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

.footer-disclaimer {
    font-size: 0.8rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   Page Styles (About, Contact, etc.)
   ========================================== */
.page-header {
    padding: 160px 0 80px;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.1), transparent),
        var(--color-bg-primary);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 16px;
}

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

.page-content {
    padding: 60px 0 100px;
    background: var(--color-bg-primary);
}

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

.content-wrapper h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 40px 0 16px;
    color: var(--color-gold);
}

.content-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 30px 0 12px;
}

.content-wrapper p {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-wrapper ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-wrapper li {
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: disc;
}

.content-wrapper a {
    color: var(--color-gold);
}

.content-wrapper a:hover {
    text-decoration: underline;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
}

.contact-item-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

/* About Page Specific */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.team-member {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-bg-primary);
}

.team-member h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.team-member .role {
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.value-item {
    text-align: center;
    padding: 24px;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .hero-stats {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-bg-secondary);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-border);
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .responsible-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .card-rating {
        align-items: flex-start;
    }
    
    .contact-form {
        padding: 24px;
    }
}

/* ==========================================
   Print Styles
   ========================================== */
@media print {
    .header,
    .hero-scroll,
    .btn,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .casino-card {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
}

