/*
Theme Name: Mostbet Mono
Theme URI: https://mostbet.com
Author: Mostbet
Author URI: https://mostbet.com
Description: Монобрендовая партнёрская тема для сайта Mostbet
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mostbet
*/

/* ==========================================================================
   CSS Variables - Mostbet Corporate Palette
   ========================================================================== */
:root {
    /* Primary Colors - Blue Base */
    --mb-primary: #0A3A6A;
    --mb-primary-deep: #08305C;
    --mb-primary-light: #0D4F8B;
    --mb-primary-lighter: #2F7EC7;
    
    /* Accent Colors - Orange CTA */
    --mb-orange: #FF7A00;
    --mb-orange-hover: #FF8C1A;
    
    /* Text & Neutral */
    --mb-white: #FFFFFF;
    --mb-gray-light: #E6EDF5;
    --mb-gray-blue: #B3C4D6;
    
    /* Additional Accent */
    --mb-green: #79C000;
    --mb-green-hover: #8AD411;
    
    /* Shadows */
    --mb-shadow-sm: 0 2px 4px rgba(8, 48, 92, 0.1);
    --mb-shadow-md: 0 4px 12px rgba(8, 48, 92, 0.15);
    --mb-shadow-lg: 0 8px 24px rgba(8, 48, 92, 0.2);
    
    /* Spacing */
    --mb-header-height: 70px;
    
    /* Transitions */
    --mb-transition: all 0.2s ease;
    
    /* Border Radius - Moderate */
    --mb-radius: 6px;
    --mb-radius-lg: 8px;
    --mb-radius-xl: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--mb-white);
    background-color: var(--mb-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--mb-transition);
}

a:hover {
    color: var(--mb-orange);
}

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

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--mb-white);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p { 
    margin-bottom: 1rem;
    color: var(--mb-gray-light);
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ==========================================================================
   Buttons - Flat Design, Simple & Readable
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: var(--mb-radius);
    transition: var(--mb-transition);
    cursor: pointer;
    white-space: nowrap;
    border: none;
}

/* Orange CTA Button - Primary Action */
.btn-orange {
    background-color: var(--mb-orange);
    color: var(--mb-white);
    box-shadow: var(--mb-shadow-sm);
}

.btn-orange:hover {
    background-color: var(--mb-orange-hover);
    color: var(--mb-white);
    box-shadow: var(--mb-shadow-md);
}

/* Outline Button - Secondary Action */
.btn-outline {
    background-color: transparent;
    border: 1px solid var(--mb-gray-blue);
    color: var(--mb-white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--mb-white);
    color: var(--mb-white);
}

/* Green Button - Confirmation/Secondary CTA */
.btn-green {
    background-color: var(--mb-green);
    color: var(--mb-white);
}

.btn-green:hover {
    background-color: var(--mb-green-hover);
    color: var(--mb-white);
}

/* Light Button */
.btn-light {
    background-color: var(--mb-primary-light);
    color: var(--mb-white);
}

.btn-light:hover {
    background-color: var(--mb-primary-lighter);
    color: var(--mb-white);
}

/* Button Sizes */
.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* ==========================================================================
   Header - Fixed Top, Clean Corporate
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--mb-header-height);
    background-color: var(--mb-primary-deep);
    box-shadow: var(--mb-shadow-md);
    z-index: 1000;
}

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

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--mb-white);
}

.site-logo .star {
    color: var(--mb-orange);
    font-size: 22px;
    margin: 0 1px;
}

.site-logo:hover {
    color: var(--mb-white);
    opacity: 0.9;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--mb-gray-light);
    border-radius: var(--mb-radius);
    transition: var(--mb-transition);
}

.main-nav a:hover {
    color: var(--mb-white);
    background-color: rgba(255, 255, 255, 0.08);
}

.main-nav a.active,
.main-nav .current-menu-item a,
.main-nav .current_page_item a {
    color: var(--mb-orange);
    background-color: rgba(255, 122, 0, 0.1);
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--mb-white);
    border-radius: var(--mb-radius);
    transition: var(--mb-transition);
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
    width: 22px;
    height: 16px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--mb-white);
    border-radius: 1px;
    transition: var(--mb-transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }

.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
}

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

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 7px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--mb-header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--mb-primary-deep);
    padding: 16px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.mobile-menu nav a {
    display: block;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--mb-white);
    background-color: var(--mb-primary);
    border-radius: var(--mb-radius);
    transition: var(--mb-transition);
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
    color: var(--mb-orange);
    background-color: rgba(255, 122, 0, 0.1);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-buttons .btn {
    width: 100%;
}

/* ==========================================================================
   Main Content
   ========================================================================== */
.site-main {
    padding-top: var(--mb-header-height);
    min-height: calc(100vh - var(--mb-header-height));
}

/* Front page with hero - remove padding, hero handles it */
body.home .site-main,
body.front-page .site-main,
body.page-template-page-slots .site-main,
body.page-template-page-instructions .site-main,
body.page-template-page-mirror .site-main,
body.page-template-page-bonuses .site-main,
body.page-template-page-aviator .site-main {
    padding-top: 0;
}

/* Hero section flush with header */
.hero-section {
    margin: 0;
    padding-top: var(--mb-header-height);
}

/* ==========================================================================
   Page Hero - Clean Corporate
   ========================================================================== */
.page-hero {
    padding: 60px 0 50px;
    background: linear-gradient(180deg, var(--mb-primary-deep) 0%, var(--mb-primary) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--mb-gray-blue);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

.text-orange {
    color: var(--mb-orange);
}

/* ==========================================================================
   Hero Slider - Clean Modern Design
   ========================================================================== */
/* ==========================================================================
   Hero Section with Slider + Widget
   ========================================================================== */
.hero-section {
    background: linear-gradient(180deg, #07498f 0%, #063d7a 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(47, 126, 199, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(47, 126, 199, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Sidebar */
.hero-sidebar {
    width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(10, 58, 106, 0.9) 0%, rgba(8, 48, 92, 0.95) 100%);
    border-radius: 12px;
    border: 1px solid rgba(47, 126, 199, 0.4);
    color: var(--mb-white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--mb-orange), #FF8C1A);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.5);
}

.sidebar-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.sidebar-item:hover {
    background: linear-gradient(135deg, rgba(47, 126, 199, 0.4) 0%, rgba(10, 58, 106, 0.95) 100%);
    border-color: rgba(47, 126, 199, 0.7);
    transform: translateX(8px);
    box-shadow: 0 6px 25px rgba(47, 126, 199, 0.3);
}

.sidebar-item:hover::before {
    transform: scaleY(1);
}

.sidebar-item:hover::after {
    left: 100%;
}

.sidebar-item i {
    font-size: 22px;
    color: var(--mb-orange);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(255, 122, 0, 0.3));
    transition: all 0.3s ease;
}

.sidebar-item:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(255, 122, 0, 0.6));
}

.sidebar-item span {
    flex: 1;
    color: var(--mb-white);
}

/* Slider */
.hero-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: var(--mb-radius-lg);
    min-height: 340px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.slide.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.slide a {
    display: block;
}

.slide > a > img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--mb-radius-lg);
    transform: scale(1);
    transition: transform 0.5s ease;
}

.slide.active > a > img:hover {
    transform: scale(1.02);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: var(--mb-white);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--mb-orange);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.slider-dots .dot.active {
    background-color: var(--mb-orange);
    transform: scale(1.2);
}

/* Widgets Stack */
.hero-widgets-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    flex-shrink: 0;
    align-self: flex-start;
}

/* Widget Base */
.hero-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, rgba(10, 58, 106, 0.95) 0%, rgba(8, 48, 92, 0.98) 100%);
    border-radius: var(--mb-radius-lg);
    padding: 18px 16px;
    border: 2px solid rgba(47, 126, 199, 0.5);
    box-shadow: 
        0 0 30px rgba(47, 126, 199, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: widgetShine 3s ease-in-out infinite;
}

@keyframes widgetShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.widget-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--mb-orange) 0%, #FF8C1A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

.widget-icon i {
    font-size: 18px;
    color: var(--mb-white);
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 122, 0, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(255, 122, 0, 0.6);
    }
}

.widget-bonus {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--mb-orange);
    line-height: 1;
    text-shadow: 0 2px 15px rgba(255, 122, 0, 0.4);
}

.bonus-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--mb-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-extra {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--mb-green);
    text-shadow: 0 0 10px rgba(121, 192, 0, 0.4);
}

/* Widget Button - Orange */
.widget-btn {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 11px;
    background: linear-gradient(135deg, var(--mb-orange) 0%, #FF8C1A 100%);
    color: var(--mb-white) !important;
    border-radius: var(--mb-radius);
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
    transition: all 0.3s ease;
    animation: widgetButtonFloat 2s ease-in-out infinite;
}

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

.widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 122, 0, 0.6);
    color: var(--mb-white) !important;
    animation: none;
}

/* Widget Button - Green */
.widget-btn-green {
    background: linear-gradient(135deg, var(--mb-green) 0%, #8AD411 100%);
    box-shadow: 0 4px 15px rgba(121, 192, 0, 0.4);
}

.widget-btn-green:hover {
    box-shadow: 0 6px 25px rgba(121, 192, 0, 0.6);
}

/* Coupon Widget */
.widget-coupon {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
    border: 1px solid #E0E0E0;
}

.coupon-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mb-primary-lighter);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.coupon-header i {
    font-size: 16px;
}

.coupon-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
}

.coupon-body i {
    font-size: 24px;
    color: var(--mb-gray-blue);
}

.coupon-body p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   Popular Slots Section
   ========================================================================== */
.slots-section {
    background: linear-gradient(180deg, var(--mb-primary) 0%, var(--mb-primary-deep) 100%);
    padding: 50px 0;
}

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

.slots-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.slots-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mb-white);
    margin: 0;
}

.slots-title i {
    color: var(--mb-orange);
    font-size: 1.3rem;
}

.slots-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mb-orange);
    transition: all 0.3s ease;
}

.slots-view-all:hover {
    color: var(--mb-orange-hover);
    transform: translateX(5px);
}

.slots-view-all i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.slots-view-all:hover i {
    transform: translateX(3px);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.slot-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a2a4a, #0d1a2e);
    border: 1px solid rgba(47, 126, 199, 0.2);
    transition: all 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 122, 0, 0.2);
    border-color: rgba(255, 122, 0, 0.4);
}

.slot-link {
    display: block;
}

.slot-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.slot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.slot-play-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--mb-orange) 0%, #FF8C1A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.slot-card:hover .slot-play-btn {
    transform: scale(1);
}

.slot-play-btn i {
    font-size: 1.1rem;
    color: var(--mb-white);
    margin-left: 3px;
}

.slot-name {
    padding: 12px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--mb-white);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: linear-gradient(180deg, rgba(13, 26, 46, 0.8) 0%, rgba(13, 26, 46, 1) 100%);
}

/* Slots Section Responsive */
@media (max-width: 1200px) {
    .slots-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
    }
}

@media (max-width: 992px) {
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .slots-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .slots-section {
        padding: 35px 0;
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .slots-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .slot-name {
        font-size: 0.7rem;
        padding: 10px 8px;
    }
    
    .slot-play-btn {
        width: 40px;
        height: 40px;
    }
    
    .slot-play-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .slot-card {
        border-radius: 8px;
    }
    
    .slot-name {
        font-size: 0.65rem;
        padding: 8px 6px;
    }
}

/* Responsive */
@media (max-width: 1400px) {
    .hero-container {
        max-width: 1300px;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        max-width: 1100px;
    }
    
    .hero-sidebar {
        width: 200px;
    }
    
    .hero-widgets-stack {
        width: 180px;
    }
}

@media (max-width: 1100px) {
    .hero-sidebar {
        width: 170px;
    }
    
    .sidebar-item {
        padding: 14px 14px;
        font-size: 10px;
    }
    
    .sidebar-item i {
        font-size: 18px;
    }
    
    .hero-widgets-stack {
        width: 160px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        display: block;
        padding: 15px 0;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 0 15px;
        gap: 12px;
    }
    
    /* Widgets vertical on mobile */
    .hero-widgets-stack {
        order: 1;
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-widget {
        width: 100%;
        padding: 18px 16px;
    }
    
    .bonus-amount {
        font-size: 1.8rem;
    }
    
    .widget-btn {
        font-size: 12px;
        padding: 12px 16px;
    }
    
    /* Hide sidebar on mobile */
    .hero-sidebar {
        display: none;
    }
    
    /* Hide slider on mobile */
    .hero-slider {
        display: none;
    }
}

/* ==========================================================================
   Poll Section
   ========================================================================== */
.poll-section {
    padding: 50px 0;
    background-color: var(--mb-primary-deep);
}

.poll-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 32px;
    background-color: var(--mb-primary);
    border-radius: var(--mb-radius-xl);
    box-shadow: var(--mb-shadow-md);
    text-align: center;
}

.poll-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--mb-white);
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.poll-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background-color: var(--mb-primary-deep);
    border: 1px solid transparent;
    border-radius: var(--mb-radius);
    cursor: pointer;
    transition: var(--mb-transition);
}

.poll-option:hover {
    border-color: var(--mb-primary-lighter);
}

.poll-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--mb-orange);
}

.poll-option span {
    font-size: 15px;
    color: var(--mb-white);
}

/* ==========================================================================
   Slots Grid - Clean Cards
   ========================================================================== */
.slots-section {
    padding: 50px 0;
}

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

.section-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--mb-white);
}

.section-subtitle {
    color: var(--mb-gray-blue);
    font-size: 1rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.slot-card {
    background-color: var(--mb-primary-deep);
    border-radius: var(--mb-radius-lg);
    overflow: hidden;
    box-shadow: var(--mb-shadow-sm);
    transition: var(--mb-transition);
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mb-shadow-lg);
}

.slot-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: var(--mb-primary);
}

.slot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mb-primary-light) 0%, var(--mb-primary) 100%);
    font-size: 40px;
}

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

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

.slot-info {
    padding: 14px;
}

.slot-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--mb-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slot-buttons {
    display: flex;
    gap: 8px;
}

.slot-buttons .btn {
    flex: 1;
    padding: 8px;
    font-size: 11px;
}

/* ==========================================================================
   Page Content - Instructions, etc.
   ========================================================================== */
.page-content {
    padding: 50px 0;
}

.content-card {
    background-color: var(--mb-primary-deep);
    padding: 32px;
    border-radius: var(--mb-radius-xl);
    box-shadow: var(--mb-shadow-sm);
    margin-bottom: 20px;
}

.content-card h2,
.content-card h3 {
    color: var(--mb-white);
}

.content-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.content-card ul li {
    margin-bottom: 8px;
    color: var(--mb-gray-light);
}

.content-card ol {
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.content-card ol li {
    margin-bottom: 10px;
    color: var(--mb-gray-light);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.step-card {
    text-align: center;
    padding: 28px;
    background-color: var(--mb-primary);
    border-radius: var(--mb-radius-lg);
    box-shadow: var(--mb-shadow-sm);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background-color: var(--mb-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mb-white);
}

.step-card h3 {
    color: var(--mb-white);
    margin-bottom: 8px;
    font-size: 1rem;
}

.step-card p {
    color: var(--mb-gray-blue);
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================================================
   Bonus Cards
   ========================================================================== */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bonus-card {
    background-color: var(--mb-primary-deep);
    border-radius: var(--mb-radius-xl);
    padding: 28px;
    box-shadow: var(--mb-shadow-sm);
    transition: var(--mb-transition);
}

.bonus-card:hover {
    box-shadow: var(--mb-shadow-md);
}

.bonus-icon {
    width: 56px;
    height: 56px;
    background-color: var(--mb-primary-light);
    border-radius: var(--mb-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.bonus-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--mb-white);
}

.bonus-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--mb-orange);
    margin-bottom: 8px;
}

.bonus-card p {
    color: var(--mb-gray-blue);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

/* ==========================================================================
   Mirror Page
   ========================================================================== */
.mirror-section {
    text-align: center;
    padding: 60px 0;
}

.mirror-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 48px 32px;
    background-color: var(--mb-primary-deep);
    border-radius: var(--mb-radius-xl);
    box-shadow: var(--mb-shadow-lg);
}

.mirror-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.mirror-card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--mb-white);
}

.mirror-card p {
    color: var(--mb-gray-blue);
    margin-bottom: 24px;
}

.mirror-url {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--mb-primary);
    border-radius: var(--mb-radius);
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    color: var(--mb-orange);
    margin-bottom: 24px;
}

/* ==========================================================================
   Aviator Page
   ========================================================================== */
.aviator-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--mb-primary-deep) 0%, var(--mb-primary) 100%);
    text-align: center;
}

.aviator-plane {
    font-size: 80px;
    margin-bottom: 20px;
}

.aviator-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--mb-white);
}

.aviator-hero .subtitle {
    font-size: 1.25rem;
    color: var(--mb-orange);
    margin-bottom: 16px;
}

.aviator-hero p {
    color: var(--mb-gray-light);
    max-width: 500px;
    margin: 0 auto 24px;
}

.aviator-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
}

.aviator-feature {
    text-align: center;
}

.aviator-feature .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mb-orange);
}

.aviator-feature .label {
    color: var(--mb-gray-blue);
    font-size: 0.85rem;
}

/* ==========================================================================
   Footer - Simple Clean
   ========================================================================== */
.site-footer {
    background-color: #003266;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0 20px;
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

.footer-payments {
    margin: 20px 0;
    width: 100%;
    max-width: 1200px;
}

.footer-payments img {
    width: 100%;
    height: auto;
}

.footer-simple p {
    color: var(--mb-gray-blue);
    font-size: 0.8rem;
    margin: 0;
}

/* ==========================================================================
   Page Content Section (from WordPress Admin) - Beautiful Styles
   ========================================================================== */
.page-content-section {
    background: #dde4ec;
    padding: 50px 0 60px;
}

.page-content-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.page-content {
    color: #1a1a1a;
    line-height: 1.85;
    font-size: 16px;
}

/* Headings */
.page-content h1 {
    color: #0a0a0a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 45px;
}

.page-content h2 {
    color: #0a0a0a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 35px;
}

.page-content h3 {
    color: #0a0a0a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
}

.page-content h4,
.page-content h5,
.page-content h6 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 25px;
}

.page-content h1:first-child,
.page-content h2:first-child,
.page-content h3:first-child {
    margin-top: 0;
}

/* Paragraphs */
.page-content p {
    margin-bottom: 18px;
    color: #1a1a1a;
    font-size: 1rem;
}

/* Links */
.page-content a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-content a:hover {
    color: #004499;
    text-decoration: underline;
}

/* Unordered Lists */
.page-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
    list-style: disc;
}

.page-content ul li {
    margin-bottom: 10px;
    color: #1a1a1a;
}

/* Ordered Lists */
.page-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
    list-style: decimal;
}

.page-content ol li {
    margin-bottom: 10px;
    color: #1a1a1a;
}

/* Nested Lists */
.page-content ul ul,
.page-content ol ol,
.page-content ul ol,
.page-content ol ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Images */
.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Image with Caption (WordPress figure) */
.page-content figure {
    margin: 30px 0;
    text-align: center;
}

.page-content figure img {
    margin-bottom: 12px;
}

.page-content figcaption {
    color: #777;
    font-size: 0.9rem;
    font-style: italic;
}

/* Blockquotes */
.page-content blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: #f5f5f5;
    border-left: 4px solid var(--mb-orange);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #444;
}

.page-content blockquote p {
    margin-bottom: 0;
    color: inherit;
}

.page-content blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #777;
    font-style: normal;
}

.page-content blockquote cite::before {
    content: '— ';
}

/* Tables */
.page-content table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    border: 1px solid #9aa5b1;
    background: #fff;
}

.page-content thead {
    background: #f5f7fa;
}

.page-content th {
    padding: 14px 20px;
    text-align: left;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid #9aa5b1;
}

.page-content tbody tr {
    background: #fff;
}

.page-content tbody tr:nth-child(even) {
    background: #f9fafb;
}

.page-content tbody tr:hover {
    background: #f0f4f8;
}

.page-content td {
    padding: 14px 20px;
    color: #000;
    border-bottom: 1px solid #9aa5b1;
}

.page-content tbody tr:last-child td {
    border-bottom: none;
}

/* Code */
.page-content code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9em;
    color: #d63384;
}

.page-content pre {
    background: #2d2d2d;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
}

.page-content pre code {
    background: none;
    padding: 0;
    color: #f8f8f2;
}

/* Horizontal Rule */
.page-content hr {
    border: none;
    height: 1px;
    background: #e0e0e0;
    margin: 35px 0;
}

/* Buttons (WordPress button blocks) */
.page-content .wp-block-button__link,
.page-content .button,
.page-content button {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--mb-orange), var(--mb-orange-hover));
    color: var(--mb-white) !important;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

.page-content .wp-block-button__link:hover,
.page-content .button:hover,
.page-content button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.5);
}

.page-content .wp-block-button__link::after {
    display: none;
}

/* WordPress Columns */
.page-content .wp-block-columns {
    display: flex;
    gap: 30px;
    margin: 35px 0;
}

.page-content .wp-block-column {
    flex: 1;
}

/* WordPress Gallery */
.page-content .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 35px 0;
}

.page-content .wp-block-gallery img {
    margin: 0;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Alerts/Notices */
.page-content .notice,
.page-content .alert,
.page-content .wp-block-quote.is-style-large {
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    background: rgba(121, 192, 0, 0.1);
    border-left: 4px solid var(--mb-green);
}

/* Video Embeds */
.page-content iframe,
.page-content video {
    max-width: 100%;
    border-radius: 16px;
    margin: 30px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.page-content .wp-block-embed {
    margin: 35px 0;
}

.page-content .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
}

.page-content .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
}

/* Definition Lists */
.page-content dl {
    margin: 25px 0;
}

.page-content dt {
    color: #0a0a0a;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.page-content dd {
    color: #333;
    margin-left: 0;
    padding-left: 15px;
    margin-bottom: 15px;
    border-left: 2px solid #0066cc;
}

/* Mark/Highlight */
.page-content mark {
    background: #fff3cd;
    color: #1a1a1a;
    padding: 2px 6px;
    border-radius: 3px;
}

/* Abbreviation */
.page-content abbr {
    border-bottom: 1px dotted #666;
    cursor: help;
}

/* Small Text */
.page-content small {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .page-content .wp-block-columns {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-content-section {
        padding: 35px 0;
    }
    
    .page-content-section .container {
        padding: 0 15px;
    }
    
    .page-content h1 {
        font-size: 1.5rem;
    }
    
    .page-content h2 {
        font-size: 1.25rem;
    }
    
    .page-content blockquote {
        padding: 15px 20px;
    }
    
    .page-content table {
        display: block;
        overflow-x: auto;
    }
    
    .page-content th,
    .page-content td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav,
    .header-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    h1, .slide-title { font-size: 1.75rem; }
    h2, .section-title { font-size: 1.5rem; }
    
    .page-hero {
        padding: 40px 0 30px;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .slide {
        min-height: 350px;
        padding: 30px 0;
    }
    
    .slide-prize {
        font-size: 2.25rem;
    }
    
    .slider-nav {
        width: 36px;
        height: 36px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .aviator-features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .slot-buttons {
        flex-direction: column;
    }
    
    .poll-card,
    .content-card,
    .bonus-card {
        padding: 20px;
    }
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--mb-orange);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--mb-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 36px;
        height: 36px;
        bottom: 16px;
        right: 16px;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================================================
   Slots Universe - Premium Dark Theme
   ========================================================================== */
:root {
    --slots-bg-dark: #0d0d0d;
    --slots-bg-card: #1a1a1a;
    --slots-purple: #FF7A00;
    --slots-purple-glow: rgba(255, 122, 0, 0.4);
    --slots-pink: #0A3A6A;
    --slots-pink-glow: rgba(10, 58, 106, 0.4);
    --slots-cyan: #2F7EC7;
    --slots-gold: #fbbf24;
    --slots-gradient: linear-gradient(135deg, #FF7A00 0%, #FF8C1A 50%, #0A3A6A 100%);
    --slots-text: #e2e8f0;
    --slots-text-muted: #94a3b8;
}

.slots-universe {
    background: var(--slots-bg-dark);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: calc(-1 * var(--mb-header-height));
    padding-top: var(--mb-header-height);
}

/* Animated Background Effects */
.slots-bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--slots-purple-glow);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--slots-pink-glow);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: rgba(47, 126, 199, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(40px, 40px) scale(1.05); }
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 122, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 122, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Hero Section */
.slots-hero {
    position: relative;
    z-index: 1;
    padding: 30px 20px 40px;
    text-align: center;
}

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

.slots-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--slots-purple);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slots-hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 0 0 25px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.title-icon-wrap {
    width: 90px;
    height: 90px;
    background: var(--slots-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px var(--slots-purple-glow);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 20px 50px var(--slots-purple-glow); }
    50% { box-shadow: 0 25px 60px var(--slots-pink-glow); }
}

.slots-icon {
    width: 50px;
    height: 50px;
    color: white;
}

.title-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.title-line {
    font-size: 3rem;
    font-weight: 800;
    color: var(--slots-text);
    line-height: 1.1;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--slots-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slots-hero-desc {
    font-size: 1.2rem;
    color: var(--slots-text-muted);
    margin: 0 0 40px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.slots-stats {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--slots-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--slots-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

/* Slots Showcase Section */
.slots-showcase {
    position: relative;
    z-index: 1;
    padding: 40px 20px 80px;
}

.slots-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--slots-purple);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slots-text);
    margin: 0;
}

/* Slots Grid */
.slots-showcase-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.slot-showcase-card {
    animation: cardReveal 0.7s ease backwards;
    animation-delay: var(--delay);
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.slot-card-inner {
    position: relative;
    background: var(--slots-bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slot-card-inner:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 122, 0, 0.4);
}

.slot-card-glow {
    position: absolute;
    inset: -2px;
    background: var(--slots-gradient);
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(15px);
}

.slot-card-inner:hover .slot-card-glow {
    opacity: 0.6;
}

.slot-card-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.slot-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.slot-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slot-card-inner:hover .slot-card-overlay {
    opacity: 1;
}

.slot-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.slot-card-inner:hover .slot-overlay-content {
    transform: translateY(0);
}

.slot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.slot-btn-play {
    background: var(--slots-gradient);
    color: white;
    box-shadow: 0 10px 30px var(--slots-purple-glow);
}

.slot-btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--slots-purple-glow);
}

.slot-btn-demo {
    background: rgba(255, 255, 255, 0.08);
    color: var(--slots-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slot-btn-demo:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.slot-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.slot-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-hot {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

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

.slot-card-info {
    padding: 20px;
}

.slot-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slots-text);
    margin: 0 0 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 45px;
}

.slot-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.slot-provider,
.slot-rtp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--slots-text-muted);
}

.slot-provider svg,
.slot-rtp svg {
    color: var(--slots-purple);
}

/* Responsive Slots Universe */
@media (max-width: 1400px) {
    .slots-showcase-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .slots-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .slots-hero {
        padding: 60px 20px 40px;
    }
    
    .slots-hero-title {
        flex-direction: column;
        gap: 20px;
    }
    
    .title-text {
        text-align: center;
    }
    
    .title-line {
        font-size: 2.2rem;
    }
    
    .title-icon-wrap {
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }
    
    .slots-icon {
        width: 38px;
        height: 38px;
    }
    
    .slots-stats {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 700px) {
    .slots-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .slots-hero-desc {
        font-size: 1rem;
    }
    
    .slot-card-info {
        padding: 15px;
    }
    
    .slot-card-name {
        font-size: 0.95rem;
        min-height: 40px;
    }
    
    .slot-card-meta {
        flex-direction: column;
        gap: 6px;
    }
    
    .slot-btn {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    
    .floating-orb {
        filter: blur(60px);
    }
    
    .orb-1 { width: 300px; height: 300px; }
    .orb-2 { width: 250px; height: 250px; }
    .orb-3 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .slots-hero {
        padding: 50px 15px 30px;
    }
    
    .slots-hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .title-line {
        font-size: 1.8rem;
    }
    
    .slots-showcase {
        padding: 30px 15px 60px;
    }
    
    .slots-showcase-grid {
        gap: 12px;
    }
    
    .slot-card-inner {
        border-radius: 14px;
    }
    
    .slot-badges {
        top: 10px;
        left: 10px;
    }
    
    .slot-badge {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-orange { color: var(--mb-orange); }
.text-white { color: var(--mb-white); }
.text-gray { color: var(--mb-gray-blue); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* ==========================================================================
   Aviator Universe - Unique Game Page
   ========================================================================== */
.aviator-universe {
    background: linear-gradient(180deg, #0a0a1a 0%, #1a0a2e 50%, #0d0d1a 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: calc(-1 * var(--mb-header-height));
    padding-top: var(--mb-header-height);
}

/* Animated Sky Background */
.aviator-sky {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,122,0,0), rgba(255,122,0,1), rgba(255,255,255,1));
    top: 20%;
    left: -100px;
    animation: shoot 4s ease-in-out infinite;
    transform: rotate(-15deg);
}

.shooting-star.star-2 {
    top: 40%;
    animation-delay: 2s;
}

@keyframes shoot {
    0% { left: -100px; opacity: 1; }
    70% { opacity: 1; }
    100% { left: 120%; opacity: 0; }
}

.clouds {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: linear-gradient(to top, rgba(10,10,26,0.8), transparent);
    animation: drift 60s linear infinite;
}

@keyframes drift {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Section */
.aviator-hero-section {
    position: relative;
    z-index: 1;
    padding: 40px 20px 60px;
}

.aviator-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Info */
.aviator-info {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.aviator-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 122, 0, 0.15);
    border: 1px solid rgba(255, 122, 0, 0.3);
    color: #FF7A00;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.aviator-title {
    margin: 0 0 25px;
}

.aviator-title .title-small {
    display: block;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin-bottom: 5px;
}

.aviator-title .title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 122, 0, 0.5);
}

.aviator-title .title-gradient {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF7A00, #FF3D00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
    animation: pulse-glow-aviator 2s ease-in-out infinite;
}

@keyframes pulse-glow-aviator {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255,122,0,0.5)); }
    50% { filter: drop-shadow(0 0 25px rgba(255,122,0,0.8)); }
}

.aviator-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0 0 30px;
    max-width: 500px;
}

.aviator-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-aviator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-aviator.btn-play {
    background: linear-gradient(135deg, #FF7A00, #FF3D00);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
}

.btn-aviator.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.5);
}

.btn-aviator.btn-demo {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.btn-aviator.btn-demo:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.aviator-stats {
    display: flex;
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 15px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}

.stat-box .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF7A00;
    display: block;
}

.stat-box .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right: Game Preview */
.aviator-game-preview {
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

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

.game-screen {
    background: linear-gradient(145deg, #1a1a2e, #0d0d1a);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 16px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.game-video {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.game-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.game-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #79C000;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #79C000;
    border-radius: 50%;
    animation: pulse-dot 1s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.recent-results {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.result {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.result-win {
    background: rgba(121, 192, 0, 0.2);
    color: #79C000;
}

.result-big {
    background: rgba(255, 122, 0, 0.2);
    color: #FF7A00;
}

.result-mega {
    background: linear-gradient(135deg, rgba(255, 61, 0, 0.3), rgba(255, 215, 0, 0.3));
    color: #FFD700;
    animation: glow-result 1s ease-in-out infinite;
}

@keyframes glow-result {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
}

.result-loss {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.players-online {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.players-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    background: rgba(255, 122, 0, 0.2);
    border: 2px solid rgba(255, 122, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 32px;
    height: 32px;
    background: #FF7A00;
    border: 2px solid #FF7A00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
}

/* Features Section */
.aviator-features-section {
    position: relative;
    z-index: 1;
    padding: 60px 20px 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 122, 0, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.25), rgba(255, 61, 0, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #FF7A00;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

/* Aviator Responsive */
@media (max-width: 1024px) {
    .aviator-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .aviator-title .title-main {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .aviator-hero-section {
        padding: 30px 15px 50px;
    }
    
    .aviator-title .title-main {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .aviator-title .title-gradient {
        font-size: 2rem;
    }
    
    .aviator-buttons {
        flex-direction: column;
    }
    
    .btn-aviator {
        justify-content: center;
    }
    
    .aviator-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-box {
        flex: 1;
        min-width: 90px;
        padding: 12px 15px;
    }
    
    .game-screen {
        padding: 20px;
    }
    
    .multiplier-value {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Demo Modal Styles
   ========================================================================== */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.demo-modal.active {
    opacity: 1;
    visibility: visible;
}

.demo-modal-content {
    background: linear-gradient(145deg, #1a1a2e, #0d0d1a);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 122, 0, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.demo-modal.active .demo-modal-content {
    transform: scale(1);
}

.demo-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
}

.demo-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-modal-header h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #FF7A00;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.demo-modal-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.demo-modal-close:hover {
    background: rgba(255, 122, 0, 0.2);
    border-color: rgba(255, 122, 0, 0.4);
    color: #FF7A00;
    transform: rotate(90deg);
}

.demo-modal-body {
    flex: 1;
    padding: 15px;
    overflow: hidden;
}

.demo-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    background: #000;
}

@media (max-width: 768px) {
    .demo-modal-content {
        width: 95%;
        height: 90vh;
        border-radius: 12px;
    }
    
    .demo-modal-header {
        padding: 15px 20px;
    }
    
    .demo-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .demo-modal-close {
        width: 40px;
        height: 40px;
    }
    
    .demo-modal-body {
        padding: 10px;
    }
}
