/* РњРёРЅРёРјР°Р»СЊРЅС‹Рµ СЃС‚РёР»Рё РґР»СЏ Р±С‹СЃС‚СЂРѕР№ Р·Р°РіСЂСѓР·РєРё */

/* РЎР±СЂРѕСЃ Рё Р±Р°Р·РѕРІС‹Рµ СЃС‚РёР»Рё */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: #1A0B2E;
}

/* РљРѕРЅС‚РµР№РЅРµСЂ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* РҐРµРґРµСЂ */
.header {
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.2);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 24px;
    color: #fff;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00FFFF, #8A2BE2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.logo-text {
    background: linear-gradient(135deg, #00FFFF, #FF1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* РќР°РІРёРіР°С†РёСЏ */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #00FFFF;
}

/* РљРЅРѕРїРєРё */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00FFFF, #8A2BE2);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.5), 0 0 20px rgba(61, 90, 254, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #333;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero СЃРµРєС†РёСЏ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1A0B2E 0%, #2D1B3D 50%, #6A0DAD 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00E5FF, #E91E63, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

.highlight {
    color: #00E5FF;
}

.subtitle {
    color: #E91E63;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* РЎРµРєС†РёРё */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00E5FF, #E91E63, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* РЎРµС‚РєРё */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* РљР°СЂС‚РѕС‡РєРё */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* РћСЃРѕР±РµРЅРЅРѕСЃС‚Рё */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00E5FF, #3D5AFE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

/* Р¤СѓС‚РµСЂ */
.footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #00E5FF;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #00E5FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* РђРґР°РїС‚РёРІРЅРѕСЃС‚СЊ */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* РРіСЂС‹ */
.games {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-placeholder {
    font-size: 4rem;
    opacity: 0.7;
}

.game-placeholder.slots { color: #E91E63; }
.game-placeholder.roulette { color: #00E5FF; }
.game-placeholder.blackjack { color: #0A0E27; background: #F0F4FF; border-radius: 8px; padding: 0.5rem; }
.game-placeholder.live { color: #7C4DFF; }
.game-placeholder.poker { color: #E91E63; }
.game-placeholder.crash { color: #00E5FF; }

.game-info {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.rtp {
    color: #4ade80;
    font-weight: 600;
}

.volatility {
    color: #fbbf24;
}

/* Р‘РѕРЅСѓСЃС‹ */
.bonuses {
    padding: 80px 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
    position: relative;
}

.bonus-card.featured {
    border-color: #00E5FF;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.5), 0 0 50px rgba(124, 77, 255, 0.2);
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00E5FF, #3D5AFE);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00E5FF;
}

/* Р”РѕРІРµСЂРёРµ */
.trust {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

/* РћС‚Р·С‹РІС‹ */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    font-size: 2rem;
    margin-right: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: #00E5FF;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

/* CTA */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #00E5FF, #3D5AFE, #7C4DFF);
    text-align: center;
    box-shadow: inset 0 0 100px rgba(0, 229, 255, 0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

/* Р”РµС‚Р°Р»СЊРЅР°СЏ РёРЅС„РѕСЂРјР°С†РёСЏ */
.detailed-info {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    padding: 80px 0;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
}

.detailed-info h1,
.detailed-info h2,
.detailed-info h3,
.detailed-info h4,
.detailed-info h5,
.detailed-info h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.detailed-info h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, #6AF6FF, #FD19FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid rgba(106, 246, 255, 0.4);
    padding-bottom: 15px;
    margin-bottom: 2rem;
}

.detailed-info h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    background: linear-gradient(135deg, #6AF6FF, #6892FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 3rem;
}

.detailed-info h3 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    color: #FD19FF;
    margin-top: 2rem;
}

.detailed-info .content-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.detailed-info table {
    margin: 2rem 0;
    border-collapse: collapse;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.detailed-info th,
.detailed-info td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    text-align: left;
}

.detailed-info th {
    background: linear-gradient(135deg, #6AF6FF, #6892FD);
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.detailed-info td {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    transition: background-color 0.3s ease;
}

.detailed-info tr:hover td {
    background: rgba(106, 246, 255, 0.1);
}

.detailed-info p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    font-size: 1.1rem;
    text-indent: 0;
}

.detailed-info strong {
    color: #FD19FF;
    font-weight: 600;
}

.detailed-info .highlight-box {
    background: linear-gradient(135deg, rgba(106, 246, 255, 0.1), rgba(253, 25, 255, 0.1));
    border-left: 4px solid #6AF6FF;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.detailed-info .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.detailed-info .info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detailed-info .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 246, 255, 0.3);
}

/* РђРґР°РїС‚РёРІРЅРѕСЃС‚СЊ РґР»СЏ РґРµС‚Р°Р»СЊРЅРѕР№ РёРЅС„РѕСЂРјР°С†РёРё */
@media (max-width: 768px) {
    .article-container {
        padding: 0 16px;
    }
    
    .detailed-info .content-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .detailed-info table {
        font-size: 0.9rem;
    }
    
    .detailed-info th,
    .detailed-info td {
        padding: 10px 12px;
    }
    
    .detailed-info .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detailed-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .detailed-info {
        padding: 60px 0;
    }
    
    .detailed-info .content-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .detailed-info table {
        font-size: 0.8rem;
    }
    
    .detailed-info th,
    .detailed-info td {
        padding: 8px 10px;
    }
    
    .detailed-info .highlight-box {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .detailed-info .info-card {
        padding: 1rem;
    }
    
    /* Р“РѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅР°СЏ РїСЂРѕРєСЂСѓС‚РєР° РґР»СЏ С‚Р°Р±Р»РёС† РЅР° РјРѕР±РёР»СЊРЅС‹С… */
    .detailed-info table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .detailed-info table tbody {
        display: table;
        width: 100%;
    }
}

/* FAQ СЃРµРєС†РёСЏ */
.faq {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(106, 246, 255, 0.4);
    box-shadow: 0 5px 20px rgba(106, 246, 255, 0.2);
}

.faq-details {
    border: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: all 0.3s ease;
    background: transparent;
}

.faq-question:hover {
    color: #FD19FF;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6AF6FF, #6892FD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-details[open] .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #FD19FF, #4D00FF);
    color: #EAFBFF;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
}

.faq-answer li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer li:last-child {
    border-bottom: none;
}

.faq-answer li::before {
    content: "вњ“";
    position: absolute;
    left: 0;
    color: #FD19FF;
    font-weight: bold;
    font-size: 1.1rem;
}

.faq-answer strong {
    color: #FD19FF;
    font-weight: 600;
}

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

/* РђРґР°РїС‚РёРІРЅРѕСЃС‚СЊ РґР»СЏ FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 0.95rem;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 16px;
        margin-left: 0.5rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .faq-icon {
        align-self: flex-end;
        margin-left: 0;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .faq-answer li {
        padding-left: 1.25rem;
        font-size: 0.9rem;
    }
}

/* РЈС‚РёР»РёС‚С‹ */
.hidden {
    display: none;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item:hover {
    color: #00E5FF;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: #00E5FF;
    font-weight: 600;
}

/* Logo subtitle */
.logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #00E5FF;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.nav-link.active {
    color: #00E5FF;
}

/* Button styles */
.btn-outline {
    background: transparent;
    color: #00E5FF;
    border: 2px solid #00E5FF;
}

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00E5FF;
    transform: translateY(-2px);
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.25rem;
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4), 0 0 20px rgba(0, 229, 255, 0.3);
    }
    to {
        box-shadow: 0 4px 25px rgba(0, 255, 255, 0.6), 0 0 40px rgba(0, 229, 255, 0.5);
    }
}

/* Hero image and decorative elements */
.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.casino-cards .card {
    position: absolute;
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 12px;
    border: 2px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.casino-cards .card-1 {
    left: 20%;
    top: 20%;
    transform: rotate(-15deg);
    animation: float 3s ease-in-out infinite;
}

.casino-cards .card-2 {
    left: 50%;
    top: 10%;
    transform: translateX(-50%) rotate(5deg);
    animation: float 3s ease-in-out infinite 1s;
}

.casino-cards .card-3 {
    right: 20%;
    top: 25%;
    transform: rotate(20deg);
    animation: float 3s ease-in-out infinite 2s;
}

.casino-chips {
    position: absolute;
    width: 100%;
    height: 100%;
}

.casino-chips .chip {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00E5FF, #7C4DFF);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.4);
}

.casino-chips .chip-1 {
    left: 15%;
    bottom: 20%;
    animation: float 4s ease-in-out infinite;
}

.casino-chips .chip-2 {
    right: 25%;
    bottom: 30%;
    animation: float 4s ease-in-out infinite 1.5s;
}

.casino-chips .chip-3 {
    left: 60%;
    bottom: 15%;
    animation: float 4s ease-in-out infinite 3s;
}

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

/* Hero background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(106, 246, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(253, 25, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Lava lamp background */
.lava-lamp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.lava-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: lavaMove 20s infinite ease-in-out;
}

.lava-blob:nth-child(1) {
    width: 400px;
    height: 400px;
    background: #00E5FF;
    top: -100px;
    left: -100px;
    animation-duration: 25s;
}

.lava-blob:nth-child(2) {
    width: 300px;
    height: 300px;
    background: #7C4DFF;
    top: 50%;
    right: -50px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.lava-blob:nth-child(3) {
    width: 350px;
    height: 350px;
    background: #E91E63;
    bottom: -100px;
    left: 20%;
    animation-duration: 35s;
    animation-delay: -10s;
}

.lava-blob:nth-child(4) {
    width: 250px;
    height: 250px;
    background: #FD19FF;
    top: 30%;
    left: 60%;
    animation-duration: 28s;
    animation-delay: -15s;
}

.lava-blob:nth-child(5) {
    width: 320px;
    height: 320px;
    background: #3D5AFE;
    bottom: 20%;
    right: 10%;
    animation-duration: 32s;
    animation-delay: -20s;
}

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

/* Trust items */
.trust-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 246, 255, 0.2);
}

.trust-item .trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item .trust-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Carousel styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonials-carousel {
    position: relative;
    margin: 2rem 0;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #00E5FF;
    background: rgba(0, 229, 255, 0.1);
    color: #00E5FF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(0, 229, 255, 0.2);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #00E5FF;
    transform: scale(1.2);
}

/* Footer styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00E5FF;
}

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

.footer-licenses {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.license-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(0, 229, 255, 0.2);
    color: #00E5FF;
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.cta-feature i {
    color: #00E5FF;
}

/* Responsive updates */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 11, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin-bottom: 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .casino-cards,
    .casino-chips {
        display: none;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-licenses {
        flex-direction: column;
        gap: 1rem;
    }
}