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

/* Prevent animation/transition during resize to avoid layout thrashing */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Disable transitions temporarily during resize - class added by JS */
.resize-animation-stopper * {
    animation: none !important;
    transition: 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-image: 
        radial-gradient(circle at 20% 50%, rgba(93, 155, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
}

/* 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);
}

.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;
    border: none;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Removed sliding animation for performance */

.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;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #5D9B3C;
    color: var(--text-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(93, 155, 60, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    border: none;
}

.casino-card .btn::before {
    content: '▶';
    font-size: 0.8rem;
}
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

/* Simplified hover for performance */
.casino-card .btn:hover {
    opacity: 0.9;
}

/* 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: #1a252f;
    contain: layout style;
}

/* Hero background image - lazy loaded */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Removed background-attachment: fixed - causes layout thrashing */

/* Gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(44, 62, 80, 0.85) 0%,
        rgba(93, 155, 60, 0.7) 50%,
        rgba(44, 62, 80, 0.85) 100%
    );
    z-index: 1;
}

/* Animated particles */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 2%),
        radial-gradient(circle at 80% 40%, rgba(80, 200, 120, 0.3) 0%, transparent 2%),
        radial-gradient(circle at 40% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 1.5%),
        radial-gradient(circle at 90% 80%, rgba(80, 200, 120, 0.2) 0%, transparent 1%),
        radial-gradient(circle at 10% 90%, rgba(255, 215, 0, 0.25) 0%, transparent 2%);
    /* animation disabled for performance */
    z-index: 1;
    pointer-events: none;
}

/* Removed sparkle animation for performance */

.hero-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(44, 62, 80, 0.9) 100%);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-lg);
    /* backdrop-filter removed for performance */
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    max-width: 1000px;
    border: 3px solid rgba(93, 155, 60, 0.5);
    /* animation disabled for performance */
}

/* Removed fadeInUp animation for performance */

.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: 
        4px 4px 0 var(--primary-color),
        0 0 20px rgba(93, 155, 60, 0.5);
    position: relative;
    z-index: 3;
    /* animation disabled for performance */
}

.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 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
    font-weight: 600;
    line-height: 1.8;
    /* animation disabled for performance */
}

.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: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 10px rgba(0, 0, 0, 1),
        0 0 18px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(0, 0, 0, 0.6);
    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;
    /* backdrop-filter removed for performance */
}

.hero-text {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 6px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(0, 0, 0, 0.6);
    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: linear-gradient(135deg, rgba(93, 155, 60, 0.3) 0%, rgba(93, 155, 60, 0.1) 100%);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border: 2px solid rgba(93, 155, 60, 0.4);
    /* backdrop-filter removed for performance */
    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;
}

.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: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 3px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    border-color: var(--primary-color);
}

.game-image {
    margin-bottom: 1.5rem;
    text-align: center;
    background: #1a252f;
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

/* Removed radial-gradient for performance */

.game-image img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    object-fit: contain;
}

/* Removed hover transform for performance */

.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;
    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);
    position: relative;
}

#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);
}

/* Removed hover transforms for performance */

#mechanics .step-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#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);
}

/* Removed for performance */

#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: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 3px solid #E8EEF2;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}

.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;
}

/* Removed hover transforms for performance */

/* 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);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.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;
}

/* 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;
    border: none;
    box-shadow: 0 4px 20px 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 */
/* Removed heavy -webkit-mask effect that caused browser crashes */
.casino-card::before {
    display: 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 {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

/* Removed radial-gradient for performance */

.casino-logo img {
    max-height: 70px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Removed heavy hover transform for performance */

/* 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;
}

.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: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.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);
    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
        );
    }
}

/* Removed hover for performance */

.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);
}

.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;
}

.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;
}

.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: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(93, 155, 60, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.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: #FFFFFF !important;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer .footer-section p {
    color: #FFFFFF !important;
}

/* Footer Contact Section */
.footer-contact .contact-item {
    color: #FFFFFF !important;
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact .contact-item:last-child {
    border-bottom: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    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.8);
    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 Navigation */
.breadcrumb {
    padding: 0.8rem 0;
    background: linear-gradient(135deg, #2d5016 0%, #1a3009 100%);
    color: #FFFFFF;
    border-bottom: 3px solid #5D9B3C;
    position: sticky;
    top: 60px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

.breadcrumb a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.breadcrumb a::before {
    content: "🏠";
    font-size: 0.85rem;
}

.breadcrumb a:hover {
    background: rgba(255,255,255,0.3);
    color: #FFD700;
}

.breadcrumb span {
    color: #FFD700;
    font-weight: 600;
}

.breadcrumb .container::after {
    content: "";
    flex-grow: 1;
}

/* Quick Nav Links */
.breadcrumb-nav {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.breadcrumb-nav a {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

.breadcrumb-nav a::before {
    content: none;
}

/* 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);
}

.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);
}

.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);
}

.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 ===== */

/* Removed scroll animations for performance */

/* Utility animation classes */
/* Removed animate-on-scroll for performance */

.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 removed for performance */

/* 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);
}

