@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: radial-gradient(circle at 10% 20%, #0a0a1a 0%, #050510 100%);
    color: #e5e5e5;
    line-height: 1.5;
}

/* ========== NAVBAR ========== */
.ls-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 20, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.ls-navbar.scrolled {
    background: rgba(5, 5, 20, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.ls-nav-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ls-logo-img {
    height: 42px;
    width: auto;
}

.ls-nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.ls-nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.ls-nav-links li a:hover,
.ls-nav-links li a.ls-nav-active {
    color: #ff6b35;
}

.ls-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.ls-hamburger span {
    width: 26px;
    height: 2px;
    background: #ff6b35;
    margin: 4px 0;
    transition: 0.3s;
}

.ls-nav-mobile {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: #050510;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: 0.3s ease;
    z-index: 999;
    list-style: none;
}

.ls-nav-mobile.active {
    left: 0;
}

.ls-nav-mobile li {
    margin: 20px 0;
}

.ls-nav-mobile li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

/* ========== HERO ========== */
.ls-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(125deg, #0a0a1a 0%, #0f0f2a 50%, #0a0a1a 100%);
}

.ls-hero-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 40%, rgba(255, 107, 53, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
}

.ls-hero-glow {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.ls-hero-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 186, 8, 0.25), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.ls-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ls-hero-left {
    animation: fadeInUp 0.8s ease;
}

.ls-hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #ff6b35;
    margin-bottom: 25px;
}

.ls-hero-left h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #ff6b35, #ffba08);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-hero-left p {
    color: #a0a0c0;
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.ls-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ls-btn-primary {
    display: inline-block;
    padding: 14px 38px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.ls-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

.ls-btn-secondary {
    display: inline-block;
    padding: 14px 38px;
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.5);
    color: #ff8c42;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.ls-btn-secondary:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

.ls-hero-right {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.ls-hero-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.ls-hero-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.ls-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.ls-hero-card:hover .ls-hero-image img {
    transform: scale(1.03);
}

.ls-hero-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.ls-hero-stat {
    text-align: center;
}

.ls-hero-stat span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #ff8c42;
}

.ls-hero-stat small {
    font-size: 12px;
    color: #7070a0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== DISCLAIMER BAR ========== */
.ls-disclaimer-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    background: rgba(255, 107, 53, 0.1);
    padding: 12px 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
}

.ls-disclaimer-bar span {
    font-size: 13px;
    font-weight: 600;
    color: #ff8c42;
}

/* ========== GAME OF THE MONTH ========== */
.ls-month-game {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
}

.ls-month-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ffba08);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.ls-month-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ls-month-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.ls-month-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ls-month-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b35;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.ls-month-info h2 {
    font-size: 38px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-month-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ls-month-rating, .ls-month-plays, .ls-month-jackpot {
    font-size: 14px;
    padding: 4px 12px;
    background: rgba(255,107,53,0.15);
    border-radius: 6px;
}

.ls-month-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.ls-month-features span {
    background: rgba(255,255,255,0.05);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
}

.ls-month-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    padding: 14px 32px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.ls-month-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}
/* ========== POPULAR GAMES SECTION ========== */
.ls-section {
    padding: 80px 0;
}

.ls-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
}

.ls-section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-section-subtitle {
    text-align: center;
    color: #a0a0c0;
    font-size: 18px;
    margin-bottom: 60px;
}

/* Games Grid */
.ls-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

/* Game Card */
.ls-game-card {
    position: relative;
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    backdrop-filter: blur(4px);
}

.ls-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.15), transparent);
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.ls-game-card:hover::before {
    left: 100%;
}

.ls-game-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 25px 40px rgba(255, 107, 53, 0.2);
}

/* Game Image */
.ls-game-link {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.ls-game-image {
    height: 220px;
    overflow: hidden;
    background: #0a0a1a;
    position: relative;
}

.ls-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.ls-game-card:hover .ls-game-image img {
    transform: scale(1.08);
}

/* Image Overlay */
.ls-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(255, 140, 66, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.ls-game-card:hover .ls-game-overlay {
    opacity: 1;
}

.ls-game-play-icon {
    font-size: 48px;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.ls-game-card:hover .ls-game-play-icon {
    transform: scale(1);
}

/* Game Info */
.ls-game-info {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ls-game-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.ls-game-card:hover .ls-game-title {
    color: #ff8c42;
}
/* Game Button - Широка версія */
.ls-game-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

.ls-game-btn span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.ls-game-btn::before {
    position: relative;
    z-index: 1;
    margin-right: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ls-game-btn:hover::before {
    transform: translateX(4px);
}

.ls-game-btn:hover span {
    transform: translateX(4px);
}

.ls-game-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.ls-game-btn:active {
    transform: translateY(-1px);
}
/* View All Link */
.ls-view-all {
    text-align: center;
    margin-top: 30px;
}

.ls-view-link {
    color: #ff8c42;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 32px;
    border-radius: 40px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.ls-view-link:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    transform: translateY(-2px);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1100px) {
    .ls-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
    }
}

@media (max-width: 700px) {
    .ls-section {
        padding: 50px 0;
    }
    
    .ls-section-title {
        font-size: 32px;
    }
    
    .ls-section-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .ls-games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
    }
    
    .ls-game-image {
        height: 200px;
    }
    
    .ls-game-title {
        font-size: 16px;
    }
    
    .ls-game-btn {
        padding: 6px 20px;
        font-size: 12px;
    }
}

/* ========== TOP 5 THIS WEEK ========== */
.ls-top-week {
    padding: 80px 0;
    background: rgba(255, 107, 53, 0.03);
}

.ls-top-grid {
    max-width: 800px;
    margin: 0 auto;
}

.ls-top-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,107,53,0.2);
    transition: 0.3s;
}

.ls-top-item:hover {
    background: rgba(255,107,53,0.05);
    transform: translateX(10px);
}

.ls-top-rank {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,53,0.2);
    border-radius: 8px;
    font-size: 20px;
    font-weight: 800;
    color: #ff8c42;
}

.rank-1 .ls-top-rank { background: #ffd700; color: #1a1a2e; box-shadow: 0 0 15px rgba(255,215,0,0.5); }
.rank-2 .ls-top-rank { background: #c0c0c0; color: #1a1a2e; }
.rank-3 .ls-top-rank { background: #cd7f32; color: #1a1a2e; }

.ls-top-info { flex: 1; }
.ls-top-info h4 { font-size: 18px; margin-bottom: 4px; color: #fff; }
.ls-top-info span { font-size: 13px; color: #ff8c42; }
.ls-top-trend { font-size: 14px; font-weight: 700; color: #4ade80; }

/* ========== WHY LUCKYSPIN ========== */
.ls-why {
    padding: 60px 0;
}

.ls-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.ls-why-card {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,107,53,0.2);
    border-radius: 12px;
    transition: 0.3s;
}

.ls-why-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.ls-why-icon {
    font-size: 52px;
    margin-bottom: 15px;
}

.ls-why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff8c42;
}

.ls-why-card p {
    font-size: 14px;
    color: #a0a0c0;
}

/* ========== CONTACT ========== */
.ls-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.ls-custom-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 40px;
}

.ls-form-group {
    margin-bottom: 25px;
}

.ls-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #a0a0c0;
    font-size: 14px;
    font-weight: 500;
}

.ls-form-group input,
.ls-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 15px;
}

.ls-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.ls-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.ls-contact-info {
    border-radius: 12px;
    padding: 40px;
}

.ls-contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.ls-contact-icon {
    font-size: 32px;
}

.ls-contact-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #ff8c42;
}

.ls-contact-details p {
    color: #a0a0c0;
    font-size: 14px;
}

/* ========== FOOTER ========== */
.ls-footer {
    background: #050510;
    padding: 70px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 107, 53, 0.25);
}

.ls-footer-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
}

.ls-footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.ls-footer-item {
    flex: 1;
    min-width: 220px;
}

.ls-footer-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff8c42;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.ls-footer-item h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #ff6b35;
}

.ls-footer-item p {
    color: #a0a0c0;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

.ls-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ls-footer-links li {
    margin-bottom: 12px;
}

.ls-footer-links li a {
    color: #a0a0c0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.ls-footer-links li a:hover {
    color: #ff6b35;
    transform: translateX(4px);
}

/* Responsible Gaming Icons */
.ls-responsible-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.ls-responsible-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ls-responsible-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.ls-responsible-item img {
    height: 34px;
    width: auto;
}

.ls-responsible-item span {
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 700;
}

/* Footer Bottom */
.ls-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.15);
}

.ls-footer-bottom p {
    color: #6b6b8b;
    font-size: 12px;
    margin: 0;
}

/* ========== MODALS ========== */
.ls-age-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(12px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.ls-age-modal-content {
    background: linear-gradient(135deg, #0f0f2a, #050510);
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    max-width: 480px;
}

.ls-age-modal-icon {
    font-size: 80px;
}

.ls-age-modal-content h2 {
    color: #ff8c42;
    margin: 15px 0;
}

.ls-age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.ls-age-btn {
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.ls-confirm {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
}

.ls-decline {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.ls-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #0f0f2a;
    border: 1px solid #ff6b35;
    border-radius: 8px;
    padding: 16px 24px;
    z-index: 9999;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.4s;
    max-width: 800px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: calc(100% - 40px);
}

.ls-cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.ls-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ls-cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a0a0c0;
    font-size: 13px;
    flex: 1;
}

.ls-cookie-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.ls-cookie-text a {
    color: #ff8c42;
    text-decoration: none;
}

.ls-cookie-buttons {
    display: flex;
    gap: 12px;
}

.ls-cookie-btn {
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.ls-cookie-btn.ls-accept {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
}

.ls-cookie-btn.ls-decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ========== 18+ WARNING BANNER - MINIMAL ========== */
.ls-warning-banner {
    margin: 50px auto;
    max-width: 1300px;
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 0px;
    padding: 25px 30px;
    position: relative;
}

.ls-warning-banner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b35, #ffba08, #ff6b35);
    z-index: -1;
    opacity: 0.3;
}

.ls-warning-container {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.ls-warning-icon {
    font-size: 48px;
    background: transparent;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    flex-shrink: 0;
    border: none;
}

.ls-warning-content {
    flex: 1;
}

.ls-warning-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ls-warning-text {
    color: #a0a0c0;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.ls-warning-text strong {
    color: #ff6b35;
}

.ls-warning-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.ls-warning-tags span {
    background: transparent;
    padding: 4px 0;
    border-radius: 0;
    font-size: 11px;
    font-weight: 500;
    color: #ff8c42;
    letter-spacing: 0;
    border-bottom: 1px dashed rgba(255, 107, 53, 0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1500px) {
    .ls-nav-container, .ls-hero-content, .ls-container, .ls-footer-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1200px) {
    .ls-hero-left h1 {
        font-size: 58px;
    }
    .ls-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .ls-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .ls-hero-buttons {
        justify-content: center;
    }
    .ls-hero-left h1 {
        font-size: 48px;
    }
    .ls-hero-card {
        max-width: 500px;
        margin: 0 auto;
    }
    .ls-contact-grid {
        grid-template-columns: 1fr;
    }
    .ls-month-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ls-month-meta {
        justify-content: center;
    }
    .ls-month-features {
        justify-content: center;
    }
    .ls-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ls-nav-links {
        display: none;
    }
    .ls-hamburger {
        display: flex;
    }
    .ls-nav-container {
        padding: 12px 20px;
    }
    .ls-hero-left h1 {
        font-size: 38px;
    }
    .ls-hero-content {
        padding: 0 20px;
    }
    .ls-section-title {
        font-size: 32px;
    }
    .ls-section-subtitle {
        font-size: 14px;
    }
    .ls-hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .ls-games-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    .ls-why-grid {
        grid-template-columns: 1fr;
    }
    .ls-top-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 12px;
    }
    .ls-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .ls-cookie-text {
        flex-direction: column;
        text-align: center;
    }
    .ls-cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .ls-warning-banner {
        margin: 30px 20px;
        padding: 18px 20px;
    }
    .ls-warning-container {
        flex-direction: column;
        text-align: center;
    }
    .ls-warning-icon {
        width: 60px;
        height: 60px;
        font-size: 40px;
    }
    .ls-warning-title {
        font-size: 18px;
    }
    .ls-warning-tags {
        justify-content: center;
    }
    .ls-footer-row {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }
    .ls-footer-item h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .ls-responsible-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .ls-hero-left h1 {
        font-size: 32px;
    }
    .ls-btn-primary, .ls-btn-secondary {
        padding: 10px 25px;
        font-size: 14px;
    }
    .ls-section-title {
        font-size: 26px;
    }
    .ls-month-info h2 {
        font-size: 28px;
    }
    .ls-warning-banner {
        margin: 20px 15px;
        padding: 15px 16px;
    }
    .ls-warning-icon {
        width: 50px;
        height: 50px;
        font-size: 32px;
    }
    .ls-warning-title {
        font-size: 16px;
    }
    .ls-responsible-icons {
        flex-direction: column;
        align-items: center;
    }
    .ls-responsible-item {
        width: 160px;
        justify-content: center;
    }
}

/* ========== CONTACT HERO ========== */
.ls-contact-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 100%);
    text-align: center;
}

.ls-contact-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-contact-hero-content p {
    color: #a0a0c0;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== CONTACT SECTION ========== */
.ls-contact-section {
    padding: 60px 0;
}

.ls-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.ls-contact-form-wrapper h3,
.ls-contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ff8c42;
}

.ls-custom-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 35px;
}

.ls-form-group {
    margin-bottom: 22px;
}

.ls-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #a0a0c0;
    font-size: 14px;
    font-weight: 500;
}

.ls-form-group input,
.ls-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.ls-form-group input:focus,
.ls-form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.ls-form-group input::placeholder,
.ls-form-group textarea::placeholder {
    color: #5a5a7a;
}

.ls-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.ls-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.ls-contact-info {
    border-radius: 12px;
    padding: 35px;
}

.ls-contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.ls-contact-item:hover {
    transform: translateX(5px);
}

.ls-contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.ls-contact-details h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ff8c42;
}

.ls-contact-details p {
    color: #a0a0c0;
    font-size: 14px;
    line-height: 1.5;
}

/* ========== FAQ SECTION ========== */
.ls-faq-section {
    padding: 60px 0;
    background: rgba(255, 107, 53, 0.02);
}

.ls-section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-section-subtitle {
    text-align: center;
    color: #a0a0c0;
    font-size: 16px;
    margin-bottom: 50px;
}

.ls-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ls-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.ls-faq-item:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
}

.ls-faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ff8c42;
    margin-bottom: 10px;
}

.ls-faq-item p {
    color: #a0a0c0;
    font-size: 14px;
    line-height: 1.5;
}

/* ========== RESPONSIVE FOR CONTACT PAGE ========== */
@media (max-width: 1200px) {
    .ls-contact-hero-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 992px) {
    .ls-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ls-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ls-contact-hero-content h1 {
        font-size: 38px;
    }
    
    .ls-contact-hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .ls-contact-hero {
        padding: 110px 0 40px;
    }
    
    .ls-contact-hero-content h1 {
        font-size: 32px;
    }
    
    .ls-contact-hero-content p {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .ls-contact-section {
        padding: 40px 0;
    }
    
    .ls-contact-form-wrapper h3,
    .ls-contact-info h3 {
        font-size: 22px;
    }
    
    .ls-custom-form,
    .ls-contact-info {
        padding: 25px;
    }
    
    .ls-form-group input,
    .ls-form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .ls-submit-btn {
        padding: 12px;
        font-size: 13px;
    }
    
    .ls-contact-item {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .ls-contact-icon {
        font-size: 28px;
    }
    
    .ls-contact-details h4 {
        font-size: 16px;
    }
    
    .ls-contact-details p {
        font-size: 13px;
    }
    
    .ls-faq-section {
        padding: 40px 0;
    }
    
    .ls-section-title {
        font-size: 28px;
    }
    
    .ls-section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .ls-faq-item {
        padding: 20px;
    }
    
    .ls-faq-item h4 {
        font-size: 16px;
    }
    
    .ls-faq-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ls-contact-hero {
        padding: 100px 0 30px;
    }
    
    .ls-contact-hero-content h1 {
        font-size: 28px;
    }
    
    .ls-contact-hero-content p {
        font-size: 13px;
    }
    
    .ls-contact-section {
        padding: 30px 0;
    }
    
    .ls-custom-form,
    .ls-contact-info {
        padding: 20px;
    }
    
    .ls-contact-form-wrapper h3,
    .ls-contact-info h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .ls-form-group {
        margin-bottom: 18px;
    }
    
    .ls-form-group label {
        font-size: 13px;
    }
    
    .ls-form-group input,
    .ls-form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .ls-submit-btn {
        padding: 10px;
        font-size: 12px;
    }
    
    .ls-contact-item {
        gap: 12px;
    }
    
    .ls-contact-icon {
        font-size: 24px;
    }
    
    .ls-faq-item {
        padding: 15px;
    }
}
/* ========== ДОДАТКОВА АДАПТАЦІЯ ДЛЯ ТЕЛЕФОНІВ (ДО 576px) ========== */

@media (max-width: 576px) {
    /* Загальні відступи */
    .ls-container, 
    .ls-nav-container, 
    .ls-hero-content, 
    .ls-footer-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    /* NAVBAR */
    .ls-nav-container {
        padding: 10px 16px !important;
    }
    
    .ls-logo-img {
        height: 32px;
    }
    
    /* HERO */
    .ls-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .ls-hero-left h1 {
        font-size: 32px !important;
        line-height: 1.2;
    }
    
    .ls-hero-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .ls-hero-left p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .ls-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .ls-btn-primary, 
    .ls-btn-secondary {
        padding: 10px 25px;
        font-size: 13px;
        width: 100%;
        max-width: 220px;
        text-align: center;
    }
    
    .ls-hero-card {
        padding: 15px;
        margin: 0 10px;
    }
    
    .ls-hero-stats {
        gap: 10px;
    }
    
    .ls-hero-stat span {
        font-size: 16px;
    }
    
    .ls-hero-stat small {
        font-size: 10px;
    }
    
    /* Disclaimer Bar */
    .ls-disclaimer-bar {
        gap: 12px;
        padding: 10px 16px;
        margin: 15px auto;
        border-radius: 8px;
    }
    
    .ls-disclaimer-bar span {
        font-size: 10px;
    }
    
    /* Game of the Month */
    .ls-month-game {
        padding: 40px 0;
    }
    
    .ls-month-badge {
        font-size: 11px;
        padding: 5px 15px;
        margin-bottom: 20px;
    }
    
    .ls-month-grid {
        gap: 25px;
    }
    
    .ls-month-info h2 {
        font-size: 24px !important;
    }
    
    .ls-month-meta {
        gap: 10px;
        justify-content: center;
    }
    
    .ls-month-rating, 
    .ls-month-plays, 
    .ls-month-jackpot {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .ls-month-features {
        gap: 8px;
        justify-content: center;
    }
    
    .ls-month-features span {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .ls-month-btn {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
    
    .ls-month-label {
        top: 10px;
        right: 10px;
        font-size: 10px;
        padding: 3px 10px;
    }
    
    /* Popular Games Section */
    .ls-section {
        padding: 40px 0;
    }
    
    .ls-section-title {
        font-size: 28px !important;
        margin-bottom: 10px;
    }
    
    .ls-section-subtitle {
        font-size: 13px !important;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .ls-games-grid {
        gap: 20px;
        max-width: 100%;
        margin: 0 0 30px 0;
    }
    
    .ls-game-card {
        margin: 0 10px;
    }
    
    .ls-game-image {
        height: 180px;
    }
    
    .ls-game-info {
        padding: 15px;
    }
    
    .ls-game-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .ls-game-btn {
        padding: 10px 20px;
        font-size: 13px;
        max-width: 140px;
    }
    
    .ls-view-link {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    /* Top 5 This Week */
    .ls-top-week {
        padding: 40px 0;
    }
    
    .ls-top-item {
        padding: 12px 15px;
        gap: 12px;
        margin: 0 10px;
    }
    
    .ls-top-rank {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .ls-top-info h4 {
        font-size: 15px;
    }
    
    .ls-top-info span {
        font-size: 11px;
    }
    
    .ls-top-trend {
        font-size: 12px;
    }
    
    /* Why LuckySpin */
    .ls-why {
        padding: 40px 0;
    }
    
    .ls-why-grid {
        gap: 20px;
    }
    
    .ls-why-card {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .ls-why-icon {
        font-size: 40px;
    }
    
    .ls-why-card h3 {
        font-size: 18px;
    }
    
    .ls-why-card p {
        font-size: 13px;
    }
    
    /* Contact Section */
    .ls-contact-hero {
        padding: 100px 0 30px;
    }
    
    .ls-contact-hero-content h1 {
        font-size: 28px !important;
    }
    
    .ls-contact-hero-content p {
        font-size: 13px;
        padding: 0 15px;
    }
    
    .ls-contact-section {
        padding: 30px 0;
    }
    
    .ls-contact-grid {
        gap: 30px;
    }
    
    .ls-contact-form-wrapper h3,
    .ls-contact-info h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .ls-custom-form,
    .ls-contact-info {
        padding: 20px;
        margin: 0 10px;
    }
    
    .ls-form-group {
        margin-bottom: 15px;
    }
    
    .ls-form-group label {
        font-size: 12px;
    }
    
    .ls-form-group input,
    .ls-form-group textarea {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .ls-submit-btn {
        padding: 12px;
        font-size: 13px;
    }
    
    .ls-contact-item {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .ls-contact-icon {
        font-size: 24px;
    }
    
    .ls-contact-details h4 {
        font-size: 15px;
    }
    
    .ls-contact-details p {
        font-size: 12px;
    }
    
    /* FAQ Section */
    .ls-faq-section {
        padding: 40px 0;
    }
    
    .ls-faq-grid {
        gap: 15px;
        padding: 0 10px;
    }
    
    .ls-faq-item {
        padding: 15px;
    }
    
    .ls-faq-item h4 {
        font-size: 15px;
    }
    
    .ls-faq-item p {
        font-size: 12px;
    }
    
    /* Footer */
    .ls-footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    
    .ls-footer-container {
        padding: 0 16px;
    }
    
    .ls-footer-row {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .ls-footer-item {
        min-width: 100%;
        text-align: center;
    }
    
    .ls-footer-item h3 {
        font-size: 16px;
        display: inline-block;
    }
    
    .ls-footer-item h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ls-footer-item p {
        font-size: 12px;
    }
    
    .ls-footer-links li a {
        font-size: 13px;
    }
    
    .ls-responsible-icons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .ls-responsible-item {
        width: 140px;
        justify-content: center;
        padding: 5px 12px;
    }
    
    .ls-responsible-item img {
        height: 28px;
    }
    
    .ls-responsible-item span {
        font-size: 11px;
    }
    
    .ls-footer-bottom p {
        font-size: 10px;
    }
    
    /* Warning Banner */
    .ls-warning-banner {
        margin: 20px 15px;
        padding: 15px;
    }
    
    .ls-warning-icon {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .ls-warning-title {
        font-size: 15px;
    }
    
    .ls-warning-text {
        font-size: 11px;
    }
    
    .ls-warning-tags span {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    /* Cookie Banner */
    .ls-cookie-banner {
        padding: 12px 16px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }
    
    .ls-cookie-text {
        font-size: 11px;
        gap: 8px;
        flex-direction: column;
        text-align: center;
    }
    
    .ls-cookie-icon {
        width: 20px;
        height: 20px;
    }
    
    .ls-cookie-buttons {
        gap: 10px;
    }
    
    .ls-cookie-btn {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    /* Age Modal */
    .ls-age-modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .ls-age-modal-icon {
        font-size: 55px;
    }
    
    .ls-age-modal-content h2 {
        font-size: 22px;
    }
    
    .ls-age-modal-content p {
        font-size: 13px;
    }
    
    .ls-age-buttons {
        gap: 12px;
    }
    
    .ls-age-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ========== ДЛЯ ДУЖЕ МАЛИХ ЕКРАНІВ (ДО 380px) ========== */
@media (max-width: 380px) {
    .ls-hero-left h1 {
        font-size: 28px !important;
    }
    
    .ls-section-title {
        font-size: 24px !important;
    }
    
    .ls-game-btn {
        padding: 8px 16px;
        font-size: 12px;
        max-width: 120px;
    }
    
    .ls-game-title {
        font-size: 14px;
    }
    
    .ls-footer-item p {
        font-size: 11px;
    }
    
    .ls-responsible-item {
        width: 130px;
    }
    
    .ls-cookie-text {
        font-size: 10px;
    }
}

/* ========== ВИРІВНЮВАННЯ ДЛЯ ПЛАНШЕТІВ (576px - 768px) ========== */
@media (min-width: 577px) and (max-width: 768px) {
    .ls-container,
    .ls-nav-container,
    .ls-hero-content {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .ls-hero-left h1 {
        font-size: 42px;
    }
    
    .ls-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .ls-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ls-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .ls-faq-grid {
        grid-template-columns: 1fr;
    }
}
/* ========== МОБІЛЬНЕ МЕНЮ (З ПРАВОГО БОКУ) ========== */
@media (max-width: 768px) {
    
    /* Приховуємо десктопне меню */
    .ls-nav-links {
        display: none;
    }
    
    /* Гамбургер іконка */
    .ls-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1002;
        position: relative;
    }
    
    .ls-hamburger span {
        width: 25px;
        height: 2px;
        background: #ff6b35;
        margin: 3px 0;
        transition: all 0.3s ease-in-out;
        border-radius: 2px;
    }
    
    /* Анімація гамбургера в хрестик */
    .ls-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .ls-hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .ls-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Мобільне меню - плавна поява з правого боку */
    .ls-nav-mobile {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #0a0a1a 0%, #050510 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 0 30px 35px;
        transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        z-index: 1001;
        list-style: none;
        border-left: 1px solid rgba(255, 107, 53, 0.3);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        margin: 0;
        overflow-y: auto;
    }
    
    .ls-nav-mobile.active {
        right: 0;
    }
    
    .ls-nav-mobile li {
        margin: 0 0 25px 0;
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }
    
    .ls-nav-mobile.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Затримки для пунктів меню */
    .ls-nav-mobile.active li:nth-child(1) { transition-delay: 0.05s; }
    .ls-nav-mobile.active li:nth-child(2) { transition-delay: 0.1s; }
    .ls-nav-mobile.active li:nth-child(3) { transition-delay: 0.15s; }
    .ls-nav-mobile.active li:nth-child(4) { transition-delay: 0.2s; }
    .ls-nav-mobile.active li:nth-child(5) { transition-delay: 0.25s; }
    
    .ls-nav-mobile li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        display: inline-block;
        padding: 8px 0;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .ls-nav-mobile li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #ff6b35, #ff8c42);
        transition: width 0.3s ease;
    }
    
    .ls-nav-mobile li a:hover::after,
    .ls-nav-mobile li a.ls-nav-active::after {
        width: 30px;
    }
    
    .ls-nav-mobile li a:hover,
    .ls-nav-mobile li a.ls-nav-active {
        color: #ff8c42;
        transform: translateX(5px);
    }
    
    /* Overlay (темний фон при відкритому меню) */
    .ls-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .ls-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ========== ALL GAMES LIBRARY ========== */
.ls-game-library {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 100%);
    min-height: 100vh;
}

.ls-library-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.ls-library-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-library-subtitle {
    text-align: center;
    color: #a0a0c0;
    font-size: 16px;
    margin-bottom: 50px;
}

.ls-library-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ls-library-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ls-library-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.15);
}

.ls-library-card-link {
    display: block;
    text-decoration: none;
}

.ls-library-image {
    height: 200px;
    overflow: hidden;
    background: #0a0a1a;
}

.ls-library-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ls-library-card:hover .ls-library-image img {
    transform: scale(1.05);
}

.ls-library-info {
    padding: 16px;
    text-align: center;
}

.ls-library-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.ls-library-card:hover .ls-library-name {
    color: #ff8c42;
}

.ls-library-play {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ls-library-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Responsive */
@media (max-width: 1100px) {
    .ls-library-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 800px) {
    .ls-library-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ls-library-title {
        font-size: 32px;
    }
}

@media (max-width: 550px) {
    .ls-game-library {
        padding: 100px 0 50px;
    }
    
    .ls-library-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .ls-library-title {
        font-size: 28px;
    }
    
    .ls-library-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .ls-library-image {
        height: 180px;
    }
    
    .ls-library-name {
        font-size: 15px;
    }
    
    .ls-library-play {
        padding: 6px 18px;
        font-size: 12px;
    }
}

/* ========== GAME PLAY ARENA ========== */
.ls-game-arena {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 100%);
    min-height: 100vh;
}

.ls-game-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.ls-game-alert {
    background: rgba(255, 107, 53, 0.08);
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
    padding: 14px 22px;
    margin-bottom: 25px;
}

.ls-game-alert-top {
    background: linear-gradient(95deg, rgba(255, 107, 53, 0.08), rgba(255, 140, 66, 0.05));
    border-left: 4px solid #ff8c42;
}

.ls-game-alert-bottom {
    background: linear-gradient(95deg, rgba(255, 107, 53, 0.08), rgba(255, 140, 66, 0.05));
    border-left: 4px solid #ffba08;
    margin-top: 25px;
    margin-bottom: 0;
}

.ls-game-alert p {
    color: #c0b0d0;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.ls-game-alert strong {
    color: #ff8c42;
    font-weight: 700;
}

.ls-game-frame-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    background: #050510;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.ls-game-frame-wrapper:hover {
    border-color: #ff8c42;
    box-shadow: 0 30px 55px rgba(255, 107, 53, 0.15);
}

.ls-game-iframe {
    display: block;
    border: none;
    background: #000;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .ls-game-frame-wrapper {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .ls-game-arena {
        padding: 100px 0 50px;
    }
    
    .ls-game-container {
        padding: 0 20px;
    }
    
    .ls-game-frame-wrapper {
        height: 450px;
        border-radius: 10px;
    }
    
    .ls-game-alert {
        padding: 12px 18px;
    }
    
    .ls-game-alert p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .ls-game-arena {
        padding: 90px 0 40px;
    }
    
    .ls-game-frame-wrapper {
        height: 350px;
        border-radius: 8px;
    }
    
    .ls-game-alert {
        padding: 10px 15px;
    }
    
    .ls-game-alert p {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .ls-game-frame-wrapper {
        height: 300px;
    }
}

/* ========== TRENDING PAGE ========== */
.ls-trending-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 100%);
    text-align: center;
}

.ls-trending-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-trending-hero-content p {
    color: #a0a0c0;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.ls-trending-section {
    padding: 60px 0 80px;
}

.ls-trending-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.ls-trending-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.ls-trending-item:hover {
    transform: translateX(8px);
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

.ls-trending-rank {
    text-align: center;
    min-width: 65px;
}

.ls-rank-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-rank-trend {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    padding: 2px 6px;
    border-radius: 20px;
    margin-top: 4px;
}

.ls-trending-image {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.ls-trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ls-trending-item:hover .ls-trending-image img {
    transform: scale(1.05);
}

.ls-trending-info {
    flex: 1;
}

.ls-trending-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.ls-trending-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.ls-trending-stats span {
    font-size: 11px;
    color: #ff8c42;
    font-weight: 500;
}

.ls-trending-info p {
    color: #a0a0c0;
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.ls-trending-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    padding: 5px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ls-trending-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .ls-trending-hero {
        padding: 110px 0 40px;
    }
    
    .ls-trending-hero-content h1 {
        font-size: 32px;
    }
    
    .ls-trending-hero-content p {
        font-size: 14px;
    }
    
    .ls-trending-container {
        padding: 0 15px;
    }
    
    .ls-trending-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 18px;
    }
    
    .ls-trending-rank {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        min-width: auto;
    }
    
    .ls-rank-number {
        font-size: 24px;
    }
    
    .ls-trending-image {
        width: 110px;
        height: 110px;
    }
    
    .ls-trending-stats {
        justify-content: center;
    }
    
    .ls-trending-info h3 {
        font-size: 18px;
    }
}
.ls-month-header {
    padding: 130px 0 50px;
    text-align: center;
}

.ls-month-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-month-header p {
    color: #a0a0c0;
    font-size: 16px;
}

.ls-month-grid-section {
    padding: 20px 0 80px;
}

.ls-month-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.ls-month-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.ls-month-card:hover {
    transform: translateY(-6px);
    border-color: #ff6b35;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.ls-month-card-rank {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: white;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.ls-month-card:nth-child(1) .ls-month-card-rank {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    box-shadow: 0 0 15px rgba(255,215,0,0.5);
}

.ls-month-card:nth-child(2) .ls-month-card-rank {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
}

.ls-month-card:nth-child(3) .ls-month-card-rank {
    background: linear-gradient(135deg, #cd7f32, #b87333);
}

.ls-month-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.ls-month-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ls-month-card:hover .ls-month-card-image img {
    transform: scale(1.05);
}

.ls-month-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ls-month-card:hover .ls-month-card-overlay {
    opacity: 1;
}

.ls-month-card-play {
    width: 50px;
    height: 50px;
    background: white;
    color: #ff6b35;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.ls-month-card-play:hover {
    transform: scale(1.1);
    background: #ff6b35;
    color: white;
}

.ls-month-card-info {
    padding: 18px;
    text-align: center;
}

.ls-month-card-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.ls-month-card-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ls-month-card-stats span {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 107, 53, 0.15);
    color: #ff8c42;
}

.ls-month-card-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ls-month-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

@media (max-width: 700px) {
    .ls-month-header {
        padding: 110px 0 30px;
    }
    
    .ls-month-header h1 {
        font-size: 32px;
    }
    
    .ls-month-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 380px;
    }
    
    .ls-month-card-image {
        height: 180px;
    }
    
    .ls-month-card-info h3 {
        font-size: 16px;
    }
}

.ls-about-simple {
    padding: 60px 0;
    background: rgba(255, 107, 53, 0.02);
}

.ls-about-simple-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ls-about-simple-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.ls-about-simple-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-about-simple-content p {
    color: #a0a0c0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ls-about-simple-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.ls-about-simple-stat {
    text-align: center;
}

.ls-about-simple-stat span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #ff8c42;
}

.ls-about-simple-stat small {
    color: #a0a0c0;
    font-size: 13px;
}

@media (max-width: 768px) {
    .ls-about-simple {
        padding: 40px 0;
    }
    
    .ls-about-simple-content h2 {
        font-size: 28px;
    }
    
    .ls-about-simple-content p {
        font-size: 14px;
    }
    
    .ls-about-simple-stats {
        gap: 25px;
    }
    
    .ls-about-simple-stat span {
        font-size: 26px;
    }
}