/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimization for smooth scrolling */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Disable hover effects during scroll to prevent flickering on Mac Chrome */
body.is-scrolling *,
body.is-scrolling *:hover,
body.is-scrolling *:focus {
    pointer-events: none !important;
}

:root {
    /* Minecraft-inspired colors - Vibrant theme */
    --primary-color: #5D9B3C; /* Minecraft grass green */
    --secondary-color: #8B5A2B; /* Minecraft dirt brown */
    --accent-gold: #FFD700; /* Gold/diamond */
    --accent-emerald: #50C878; /* Emerald green */
    --accent-blue: #4A90E2; /* Sky blue */
    --accent-red: #E74C3C; /* Redstone red */
    --accent-purple: #9B59B6; /* Enchanted purple */
    
    /* Gradient colors */
    --gradient-primary: linear-gradient(135deg, #5D9B3C 0%, #3D7A2C 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-sky: linear-gradient(180deg, #87CEEB 0%, #4A90E2 100%);
    --gradient-dark: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    
    /* Background colors */
    --bg-main: #F0F4F8;
    --bg-section: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-header: rgba(255, 255, 255, 0.95);
    --bg-footer: #1a252f;
    --bg-dark: #2C3E50;
    
    /* Text colors */
    --text-dark: #1a1a1a;
    --text-medium: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;
    
    /* Minecraft pixel border */
    --pixel-border: 4px solid #333;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 20px rgba(93, 155, 60, 0.3);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    /* background gradients removed for scroll performance */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* System pixel-style font fallback - removed heavy Press Start 2P */
.pixel-font {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-header);
    /* backdrop-filter removed for performance */
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--primary-color);
    transition: var(--transition-normal);
    transform: translateZ(0);
    will-change: transform;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-normal);
}

.header:hover::after {
    opacity: 1;
}

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

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition-fast);
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-list a:hover {
    color: var(--primary-color);
    background: rgba(93, 155, 60, 0.08);
}

.nav-list a:hover::before {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-header);
        padding: 2rem;
        box-shadow: 0 4px 10px var(--shadow-medium);
        border-top: 2px solid var(--primary-color);
    }

    .nav.active .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav.active .nav-list a {
        display: block;
        padding: 0.5rem 0;
    }
}

/* Buttons - Minecraft Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(93, 155, 60, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(93, 155, 60, 0.5);
}

.btn-secondary {
    background: var(--gradient-gold);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Casino card button styles */
.casino-card .btn {
    margin: 1.5rem 2rem 2rem;
    margin-top: auto;
    width: calc(100% - 4rem);
    text-align: center;
    padding: 18px 28px;
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #5D9B3C 0%, #3D7A2C 50%, #2D6A1C 100%);
    color: var(--text-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(93, 155, 60, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.casino-card .btn::before {
    content: '▶';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.casino-card .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.casino-card .btn:hover::after {
    left: 100%;
}

.casino-card .btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #1a1a1a;
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

.casino-card .btn:hover::before {
    transform: translateX(3px);
}

.casino-card .btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* Hero Section - Minecraft Themed */
.hero {
    padding: 5rem 0;
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-color: #1a252f;
    /* background-image loaded async via JS for better performance */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Hero background loaded class - smooth fade in */
.hero.bg-loaded::before {
    background-image: url('images/optimized/mineslot/gameplay-main.webp');
    opacity: 1;
}

/* Hero background image container - for smooth fade-in (loads async) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;
}

/* Gradient overlay - on top of background image */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(26, 37, 47, 0.88) 0%,
        rgba(44, 62, 80, 0.82) 50%,
        rgba(26, 37, 47, 0.88) 100%
    );
    z-index: 1;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(26, 37, 47, 0.92);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    max-width: 1000px;
    border: 2px solid rgba(93, 155, 60, 0.4);
}

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

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 3;
}

.hero h1 span {
    color: var(--accent-gold);
    text-shadow: 
        4px 4px 0 #B8860B,
        0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
    font-weight: 600;
    line-height: 1.8;
}

.hero-intro {
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-top: 1.5rem;
    margin-bottom: 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 3;
    font-weight: 600;
    line-height: 1.7;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-left: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

.hero-text {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 3;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 3;
    /* animation disabled for performance */
}

.stat-item {
    text-align: center;
    background: rgba(93, 155, 60, 0.2);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border: 2px solid rgba(93, 155, 60, 0.4);
    transition: var(--transition-fast);
    min-width: 140px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-number {
    display: block;
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section {
    padding: 5rem 0;
    background-color: var(--bg-section);
    position: relative;
    overflow: hidden;
    contain: layout style paint;
}

.section:nth-child(even) {
    background: linear-gradient(180deg, var(--bg-main) 0%, #E8EEF2 100%);
}

/* Decorative pixel blocks */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 8px,
        var(--accent-gold) 8px,
        var(--accent-gold) 16px,
        var(--secondary-color) 16px,
        var(--secondary-color) 24px
    );
}

.section h2 {
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1.5rem;
    line-height: 1.6;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 0;
    box-shadow: 
        -8px 0 0 var(--accent-gold),
        8px 0 0 var(--accent-gold);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.8;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.content-text {
    padding: 1rem 0;
}

.content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #000000;
    font-weight: 500;
}

.content-text p:first-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.85;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* History Timeline */
.history-timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #F8FAF9 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
    border: 3px solid transparent;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.game-card:hover {
    transform: translateY(-5px) translateZ(0);
    border-color: var(--primary-color);
}

.game-card:hover::before {
    transform: scaleX(1);
}

.game-image {
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.game-image::before {
    content: none;
    /* Radial gradients removed for performance */
}

.game-image img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    object-fit: contain;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-card h3 {
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.game-developer {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.game-card > p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.game-features {
    list-style: none;
    margin-top: 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(93, 155, 60, 0.2);
}

.game-features li {
    padding: 0.4rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.game-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 18px;
    height: 18px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Comparison Section */
.comparison-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.comparison-image-item {
    text-align: center;
}

.comparison-image-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.image-caption {
    margin-top: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    overflow: hidden;
}

.comparison-table th {
    background: var(--gradient-dark);
    color: var(--text-white);
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    border-top-left-radius: var(--radius-lg);
}

.comparison-table th:last-child {
    border-top-right-radius: var(--radius-lg);
}

.comparison-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #E8EEF2;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
}

.comparison-table tr:nth-child(even) {
    background-color: #F8FAF9;
}

.comparison-table tr:hover td {
    background-color: rgba(93, 155, 60, 0.08);
}

.comparison-table td:first-child {
    font-weight: 700;
    color: var(--primary-color);
}

/* Comparison CTA Buttons */
.comparison-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn-minedrop,
.btn-mineslot {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 220px;
    position: relative;
    overflow: hidden;
}

.btn-minedrop {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #FFD700;
    border: 3px solid #FFD700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.btn-mineslot {
    background: linear-gradient(135deg, #5D9B3C 0%, #3D7A2C 100%);
    color: #FFFFFF;
    border: 3px solid #50C878;
    box-shadow: 0 8px 30px rgba(93, 155, 60, 0.4);
}

.btn-minedrop:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
}

.btn-mineslot:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(93, 155, 60, 0.6);
    background: linear-gradient(135deg, #50C878 0%, #3D7A2C 100%);
}

.btn-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-label {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.3rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .comparison-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-minedrop,
    .btn-mineslot {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
    }
}

.comparison-details {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.detail-item p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Core Game Mechanics Section - Blue Background */
#mechanics {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-dark-blue) 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 0;
}

#mechanics h2 {
    color: var(--text-white);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#mechanics .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    #mechanics .steps-grid {
        grid-template-columns: 1fr;
    }
}

#mechanics .step-item {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

#mechanics .step-item::before {
    display: none; /* Remove gradient top border */
}

#mechanics .step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

#mechanics .step-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 4px solid var(--accent-gold);
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(93, 155, 60, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
    transition: var(--transition-normal);
}

#mechanics .step-item:hover .step-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(93, 155, 60, 0.5);
}

#mechanics .step-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(2px 2px 2px rgba(0,0,0,0.3));
}

#mechanics .step-number {
    display: flex;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 1.2rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(93, 155, 60, 0.4);
    border: 3px solid var(--accent-gold);
    transition: var(--transition-normal);
}

#mechanics .step-item:hover .step-number {
    transform: scale(1.1);
}

#mechanics .step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 800;
}

#mechanics .step-item p {
    color: #000000;
    line-height: 1.8;
    font-size: 1rem;
    text-align: left;
    font-weight: 600;
}

/* Steps Grid - Improved Design for Register Section */
.register-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* How to Play Preview - Step Items */
.how-to-play-preview .step-item {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAF9 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 3px solid #E8EEF2;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    overflow: hidden;
    position: relative;
}

.how-to-play-preview .step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.how-to-play-preview .step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 1.3rem;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 6px 20px rgba(93, 155, 60, 0.4);
    margin: 0 auto 1.5rem;
    transition: var(--transition-normal);
}

.how-to-play-preview .step-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 1rem;
}

.how-to-play-preview .step-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
}

.how-to-play-preview .step-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.how-to-play-preview .step-item:hover .step-number {
    transform: scale(1.1) rotate(10deg);
}

/* General Step Item */
.step-item {
    background-color: var(--bg-card);
    padding: 0;
    border-radius: 16px;
    text-align: left;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.15);
}

.step-item:hover::before {
    transform: scaleX(1);
}

.step-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.5);
    margin: 0 auto 1rem;
}

.step-icon {
    font-size: 3rem;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.step-content {
    padding: 2rem;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 800;
}

.step-content p {
    color: #000000;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

/* Casinos Grid */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    padding: 0 1rem;
    contain: layout;
    transform: translateZ(0);
}

/* Rank badges for top 3 casinos */
.casino-card:first-child .casino-logo::after {
    content: '🥇 #1';
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 0.5rem;
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.casino-card:nth-child(2) .casino-logo::after {
    content: '🥈 #2';
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #1a1a1a;
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 0.5rem;
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.casino-card:nth-child(3) .casino-logo::after {
    content: '🥉 #3';
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #CD7F32, #B87333);
    color: #fff;
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 0.5rem;
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .casinos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .casino-card {
        min-height: auto;
    }
    
    .casino-card h3 {
        font-size: 0.7rem;
        margin: 1rem 1rem;
    }

    .casino-rating {
        margin: 0 1rem 0.8rem;
        padding: 0.6rem;
    }

    .rating-score {
        font-size: 0.55rem;
    }

    .casino-tags {
        margin: 0 1rem 0.8rem;
        gap: 0.4rem;
    }

    .tag {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }

    .casino-stats {
        margin: 0 1rem 0.8rem;
        padding: 0.8rem;
    }

    .casino-stats .stat-value {
        font-size: 0.5rem;
    }

    .casino-info {
        margin: 0 1rem 0.8rem;
        padding: 0.8rem;
    }

    .casino-info p {
        font-size: 0.8rem !important;
    }

    .casino-card > p {
        margin: 0 1rem 0.5rem;
        font-size: 0.8rem;
    }

    .casino-bonuses {
        margin: 0 1rem 1rem;
        padding: 1rem;
    }

    .casino-bonuses h4 {
        font-size: 0.55rem;
    }

    .casino-bonuses li {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem 0.5rem 2rem;
    }

    .casino-card .btn {
        margin: 1rem;
        width: calc(100% - 2rem);
        padding: 12px 16px;
        font-size: 0.55rem;
    }
    
    .casino-card .casino-logo {
        padding: 1.5rem;
    }

    .casino-card::after {
        font-size: 0.4rem;
        padding: 5px 35px;
        top: 12px;
        right: -38px;
    }
}

.casino-card {
    background: #FFFFFF;
    padding: 0;
    border-radius: 24px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 620px;
    will-change: transform;
    transform: translateZ(0);
}

/* Gradient border effect - disabled for performance on Mac Chrome */
.casino-card::before {
    content: none;
}

/* TOP badge ribbon */
.casino-card::after {
    content: '⭐ TOP PICK';
    position: absolute;
    top: 20px;
    right: -40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 8px 50px;
    transform: rotate(45deg);
    z-index: 20;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
    opacity: 0;
    letter-spacing: 0.5px;
}

.casino-card:first-child::after,
.casino-card:nth-child(2)::after,
.casino-card:nth-child(3)::after {
    opacity: 1;
}

/* Rank numbers for top 3 */
.casino-card:first-child::before,
.casino-card:nth-child(2)::before,
.casino-card:nth-child(3)::before {
    opacity: 1;
}

.casino-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 8px 25px rgba(93, 155, 60, 0.15);
}

.casino-card:hover::before {
    opacity: 1;
}

/* Casino logo header */
.casino-logo {
    background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
    margin: 0;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.casino-logo::before {
    content: none;
    /* Radial gradients removed for performance */
}

.casino-logo img {
    max-height: 70px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.casino-card:hover .casino-logo img {
    transform: scale(1.08);
}

/* Casino card body */
.casino-card-body {
    padding: 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.casino-card h3 {
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 0.85rem;
    margin: 1.5rem 2rem 1rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.5;
}

.casino-card > p {
    color: var(--text-medium);
    margin: 0 2rem 0.8rem;
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.7;
}

.casino-card > p:first-of-type {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.casino-card > p strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Casino Rating */
.casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0 2rem 1rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.rating-stars {
    font-size: 1.1rem;
    color: #FFD700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.rating-score {
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 0.65rem;
    color: #B8860B;
    font-weight: 800;
}

/* Casino Tags */
.casino-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 2rem 1rem;
    justify-content: center;
}

.tag {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.tag-exclusive {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.tag-crypto {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.tag-bonus {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.tag-popular {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.tag-spins {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.tag-trusted {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
}

.tag-fast {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
}

.tag-new {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
}

.tag-vip {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
}

.tag-nolimit {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: white;
}

.tag-sports {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.tag-cashback {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
}

/* Casino Stats Grid */
.casino-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 0 2rem 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
}

.casino-stats .stat {
    text-align: center;
    padding: 0.5rem;
}

.casino-stats .stat-label {
    display: block;
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.casino-stats .stat-value {
    display: block;
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 0.55rem;
    color: var(--primary-color);
    font-weight: 800;
}

/* Casino Info List */
.casino-info {
    margin: 0 2rem 1rem;
    padding: 1rem;
    background: rgba(93, 155, 60, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.casino-info p {
    margin: 0 !important;
    padding: 0.4rem 0;
    font-size: 0.85rem !important;
    color: var(--text-medium);
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.casino-info p:last-child {
    border-bottom: none;
}

.casino-info p strong {
    color: var(--text-dark);
}

.casino-bonuses {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 0 2rem 1.5rem;
    text-align: left;
    border: 2px solid rgba(93, 155, 60, 0.2);
    position: relative;
    overflow: hidden;
}

.casino-bonuses::before {
    content: '🎁';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 4rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.casino-bonuses h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 0.65rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.casino-bonuses h4::before {
    content: '💰';
    -webkit-text-fill-color: initial;
}

.casino-bonuses ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.casino-bonuses li {
    color: var(--text-dark);
    padding: 0.6rem 1rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.casino-bonuses li:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.casino-bonuses li::before {
    content: "✓";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.casino-bonuses li strong {
    color: var(--primary-color);
    font-weight: 800;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Choose Casino Section - Infographic Style */
.choose-casino-section {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d5a87 50%, #1a3a5c 100%);
    padding: 5rem 0;
    margin: 4rem 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.choose-casino-section::before {
    content: none;
    /* SVG pattern removed for performance */
}

.choose-casino-section .container {
    position: relative;
    z-index: 1;
}

.choose-casino-section .section-header h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.choose-casino-section .section-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 1000px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    position: relative;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .choose-casino-section .section-header h2 {
        font-size: 2rem;
    }
}

.criteria-item {
    background: linear-gradient(135deg, #7FC8F8 0%, #6BB6FF 100%);
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-height: 200px;
}

.criteria-item:nth-child(even) {
    margin-top: 2rem;
}

.criteria-item::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 1.5rem;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5) 0px,
        rgba(255, 255, 255, 0.5) 8px,
        transparent 8px,
        transparent 16px
    );
    display: none;
}

.criteria-item:not(:last-child)::after {
    display: block;
}

@media (min-width: 769px) {
    .criteria-item:nth-child(odd)::after {
        left: auto;
        right: -1.5rem;
        bottom: 50%;
        transform: translateY(50%) rotate(90deg);
        width: 3rem;
        height: 2px;
        background: repeating-linear-gradient(
            to right,
            rgba(255, 255, 255, 0.5) 0px,
            rgba(255, 255, 255, 0.5) 8px,
            transparent 8px,
            transparent 16px
        );
    }
    
    .criteria-item:nth-child(even)::after {
        left: -1.5rem;
        right: auto;
        bottom: 50%;
        transform: translateY(50%) rotate(90deg);
        width: 3rem;
        height: 2px;
        background: repeating-linear-gradient(
            to right,
            rgba(255, 255, 255, 0.5) 0px,
            rgba(255, 255, 255, 0.5) 8px,
            transparent 8px,
            transparent 16px
        );
    }
}

.criteria-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #90CAF9 0%, #7FC8F8 100%);
}

.criteria-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #1a3a5c;
    color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.4);
    z-index: 2;
}

.criteria-content {
    margin-top: 1rem;
}

.criteria-content h3 {
    color: #1a3a5c;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    padding-right: 60px;
    line-height: 1.3;
}

.criteria-content p {
    color: #1a3a5c;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    text-align: left;
}

.section-footer {
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    /* backdrop-filter removed for performance */
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.section-footer p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: center;
    margin: 0;
}

/* Casino page specific improvements */
.casino-card .casino-logo {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
}

.casino-card .casino-logo img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Improve spacing in casino cards */
.casino-card > p:last-of-type {
    margin-bottom: 1.5rem;
}

/* Feature list styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.8;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Demo Section */
.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.demo-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.demo-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.demo-image img {
    width: 100%;
    border-radius: 8px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-light);
    will-change: auto;
    transform: translateZ(0);
}

.testimonial-video {
    padding: 0;
    overflow: hidden;
}

.testimonial-video-wrapper {
    width: 100%;
    position: relative;
    background-color: #000;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.testimonial-video-player {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: contain;
    background-color: #000;
    will-change: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-medium);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-dark);
}

.author-info span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Poll Section */
.poll-box {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 3rem auto;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 12px var(--shadow-light);
}

.poll-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.poll-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.poll-option:hover {
    background-color: var(--hover-bg);
    border-color: var(--primary-color);
}

.poll-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.poll-option label {
    cursor: pointer;
    flex: 1;
}

/* Verdict Section */
.verdict-content {
    max-width: 900px;
    margin: 0 auto;
}

.verdict-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.verdict-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAF9 100%);
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid #E8EEF2;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md), 0 0 20px rgba(93, 155, 60, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

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

.faq-question:hover {
    background: rgba(93, 155, 60, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--gradient-gold);
    color: #1a1a1a;
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.9;
    color: var(--text-medium);
    font-weight: 500;
    border-top: 1px solid #E8EEF2;
    margin-top: 0;
    padding-top: 1.5rem;
    color: var(--text-medium);
}

/* CTA Box */
.cta-box {
    text-align: center;
    margin-top: 3rem;
}

/* Footer - Minecraft Dark Theme */
.footer {
    background: var(--gradient-dark);
    padding: 5rem 0 2rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 12px,
        var(--accent-gold) 12px,
        var(--accent-gold) 24px,
        var(--accent-emerald) 24px,
        var(--accent-emerald) 36px
    );
}

.footer::after {
    content: none;
    /* Removed for performance */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    font-family: 'Nunito', sans-serif; font-weight: 800; text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a::before {
    content: '▸';
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
}

.footer-regulations {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.regulation-logos {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.regulation-logos img {
    height: 45px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition-fast);
}

.regulation-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

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

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background-color: var(--bg-main);
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb a {
    color: var(--text-dark);
    text-decoration: none;
}

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

/* Table of Contents */
.toc-section {
    background-color: var(--bg-main);
}

.toc-box {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.toc-box h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 0.8rem;
}

.toc-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    padding-left: 1.5rem;
    position: relative;
}

.toc-list a:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.toc-list a:hover {
    color: var(--primary-color);
}

/* Blocks Grid */
.blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.block-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.block-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.block-card img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.block-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

.block-card p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #000000;
    font-weight: 500;
}

.block-card p strong {
    color: #000000;
    font-weight: 700;
}

/* Pickaxes Grid */
.pickaxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pickaxe-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pickaxe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.pickaxe-card img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pickaxe-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

.pickaxe-card p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #000000;
    font-weight: 500;
}

.pickaxe-card p strong {
    color: #000000;
    font-weight: 700;
}

/* Bonuses Grid */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: all 0.3s;
}

.bonus-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.bonus-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.bonus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.bonus-card p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.bonus-card p strong {
    color: #000000;
    font-weight: 700;
}

/* Strategies Content */
.strategies-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.strategy-item {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    border: 2px solid var(--border-color);
    border-left-width: 4px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.strategy-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.feature-list li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 500px;
        padding: 3rem 0;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem 1.5rem;
        min-width: auto;
    }

    .content-grid,
    .demo-content,
    .comparison-images,
    .comparison-details {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 3rem 0;
    }

    .section h2 {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .poll-box {
        padding: 1.5rem;
    }

    .casino-card {
        min-height: auto;
    }

    .casino-card::after {
        display: none;
    }

    .footer::before {
        height: 4px;
    }

    .footer-section h4 {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .section h2 {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.75rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-item {
        padding: 1rem;
        min-width: 100px;
    }
}

/* ===== ANIMATIONS ===== */

/* Scroll animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(93, 155, 60, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(93, 155, 60, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    }
}

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

/* Utility animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating decoration elements */
.floating-block {
    /* animation disabled for performance */
}

/* Pulse effect for CTAs */
.btn-pulse {
    /* animation disabled for performance */
}

/* Glow effect for important elements */
.glow-effect {
    /* animation disabled for performance */
}

/* ===== SPECIAL COMPONENTS ===== */

/* Minecraft-style pixelated border */
.pixel-border {
    border: 4px solid #1a1a1a;
    box-shadow: 
        inset -4px -4px 0 rgba(0,0,0,0.3),
        inset 4px 4px 0 rgba(255,255,255,0.2);
}

/* Gold badge */
.gold-badge {
    background: var(--gradient-gold);
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Green badge */
.green-badge {
    background: var(--gradient-primary);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tooltip */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 100;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Card shine effect */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card-shine:hover::after {
    transform: translateX(100%);
}

/* Selection color */
::selection {
    background: rgba(93, 155, 60, 0.3);
    color: var(--text-dark);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Testimonial date styling */
.testimonial-date {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 4px;
    opacity: 0.8;
}

/* Trust counter section */
.trust-counter {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Sticky CTA for mobile */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #5D9B3C 0%, #3D7A2C 100%);
    padding: 12px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.sticky-cta a {
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 12px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
}

.sticky-cta a:hover {
    background: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .trust-counter {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .trust-item {
        flex: 1 1 40%;
    }
}

/* Last updated badge */
.last-updated {
    display: inline-block;
    background: var(--bg-main);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.last-updated strong {
    color: var(--primary-color);
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.why-us-item {
    background: var(--bg-card);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.why-us-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.why-us-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.why-us-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

