/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #131313;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: #e0a24c;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e0a24c;
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px;
}

.primary-btn {
    background: conic-gradient(from 180deg at 50% 50%, #e0a24c 0deg, #8d5419 1turn);
    color: #fff;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 162, 76, 0.4);
}

.secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid transparent;
}

.secondary-btn:hover {
    border: 2px solid #e0a24c;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Slider Styles - Only for main page (index.html) */
.slider-section {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Swiper-specific styles - Only for main page */
.swiper-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.main-slider {
    width: 100%;
    height: 400px;
}

/* Swiper slide image styles - Only for main page */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swiper pagination styles - Only for main page */
.swiper-pagination-bullet {
    background: #e0a24c;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #e0a24c !important;
}

/* Swiper navigation button styles - Only for main page */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(224, 162, 76, 0.2) !important;
    border-radius: 50% !important;
    width: 50px !important;
    border: 1px solid #e0a24c !important;
    height: 50px !important;
    display: flex !important;
    backdrop-filter: blur(10px) !important;
    align-items: center !important;
    justify-content: center !important;
    color: #e0a24c !important;
    transition: 0.2s ease-in-out !important;
}

/* Swiper button pseudo-elements - Only for main page */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px !important;
}

/* Swiper button hover effects - Only for main page */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(.95) !important;
}

/* Main Content Styles */
.main-content {
    padding: 40px 0;
}

.main-content h1 {
    font-size: 2.5rem;
    color: #e0a24c;
    margin-bottom: 30px;
    text-align: center;
}

.main-content h2 {
    font-size: 2rem;
    color: #e0a24c;
    text-align: center;
    margin: 40px 0 20px;
}

.main-content h3 {
    font-size: 1.3rem;
    color: #e0a24c;
    margin: 20px 0 10px;
}

.main-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.main-content a:not(.btn) {
    color: #e0a24c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-content a:not(.btn):hover {
    color: #fff;
    text-decoration: underline;
}

.hero-section,
.why-choose,
.advantages,
.games-overview,
.faq,
.conclusion {
    margin-bottom: 50px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.features-list i {
    color: #e0a24c;
    font-size: 1.2rem;
    min-width: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.advantages-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 162, 76, 0.2);
}

.advantage-icon {
    font-size: 2rem;
    color: #e0a24c;
    min-width: 50px;
}

.advantage-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.advantage-content p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(224, 162, 76, 0.2);
}

.faq-item h3 {
    margin: 0 0 15px 0;
}

.disclaimer {
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    margin-top: 30px;
}

/* Footer Styles */
.footer {
    background: #000000;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #e0a24c;
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: #e0a24c;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #e0a24c;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    .main-content h2 {
        font-size: 1.6rem;
    }
    
    .advantages-table {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 1280px) {
    .header-content {
        position: relative;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 768px) {
    
    .main-slider {
        height: 250px;
    }
    
    .main-content h1 {
        font-size: 1.8rem;
    }
    
    .main-content h2 {
        font-size: 1.4rem;
    }
    
    .main-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .advantages-table {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods,
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }
    
    .main-content h1 {
        font-size: 1.5rem;
    }
    
    .main-content h2 {
        font-size: 1.2rem;
    }
    
    .main-slider {
        height: 200px;
    }
    
    .advantage-item {
        padding: 20px;
    }
    
    .advantage-icon {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Login Page Specific Styles */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

header .container {
    max-width: unset;
}

.step-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 162, 76, 0.2);
}

.step-number {
    background: conic-gradient(from 180deg at 50% 50%, #e0a24c 0deg, #8d5419 1turn);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 10px 0;
    color: #e0a24c;
}

.step-content p {
    margin: 0;
    opacity: 0.9;
}

.troubleshooting-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.trouble-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    transition: transform 0.3s ease;
}

.trouble-item:hover {
    transform: translateY(-3px);
}

.trouble-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trouble-header i {
    color: #e0a24c;
    font-size: 1.5rem;
}

.trouble-header h3 {
    margin: 0;
    color: #e0a24c;
}

.trouble-item p {
    margin: 0;
    opacity: 0.9;
}

/* APP Page Specific Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 162, 76, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: #e0a24c;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin: 0 0 10px 0;
    color: #e0a24c;
}

.feature-item p {
    margin: 0;
    opacity: 0.9;
}

.bonuses-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.bonus-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-3px);
}

.bonus-icon {
    font-size: 2rem;
    min-width: 50px;
}

.bonus-content h3 {
    margin: 0 0 8px 0;
    color: #e0a24c;
}

.bonus-content p {
    margin: 0 0 8px 0;
    opacity: 0.9;
}

.validity {
    background: #e0a24c;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.review-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-3px);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-item p {
    margin: 0;
    font-style: italic;
    opacity: 0.9;
}

/* Games Page Specific Styles */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.game-category {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 162, 76, 0.2);
}

.game-category i {
    font-size: 2.5rem;
    color: #e0a24c;
    margin-bottom: 15px;
}

.game-category h3 {
    margin: 0 0 15px 0;
    color: #e0a24c;
}

.game-category p {
    margin: 0;
    opacity: 0.9;
}

.games-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.game-item {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.game-item:hover {
    transform: translateY(-3px);
}

.game-info h3 {
    margin: 0 0 5px 0;
    color: #e0a24c;
}

.provider {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.game-rtp {
    background: #e0a24c;
    color: #000;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Slots Page Specific Styles */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.slot-category {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 162, 76, 0.2);
}

.slot-category i {
    font-size: 2.5rem;
    color: #e0a24c;
    margin-bottom: 15px;
}

.slot-category h3 {
    margin: 0 0 15px 0;
    color: #e0a24c;
}

.slot-category p {
    margin: 0;
    opacity: 0.9;
}

.strategies-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.strategy-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    transition: transform 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-3px);
}

.strategy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.strategy-header h3 {
    margin: 0;
    color: #e0a24c;
}

.provider-tag {
    background: #e0a24c;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.strategy-info {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.rtp, .feature {
    background: rgba(224, 162, 76, 0.2);
    color: #e0a24c;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.strategy-tip {
    margin: 0;
    font-style: italic;
    opacity: 0.9;
}

/* Bonus Page Specific Styles */
.bonus-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.bonus-category {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 162, 76, 0.2);
}

.bonus-category i {
    font-size: 2.5rem;
    color: #e0a24c;
    margin-bottom: 15px;
}

.bonus-category h3 {
    margin: 0 0 15px 0;
    color: #e0a24c;
}

.bonus-category p {
    margin: 0;
    opacity: 0.9;
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.claim-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.claim-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 162, 76, 0.2);
}

.claim-step .step-number {
    background: conic-gradient(from 180deg at 50% 50%, #e0a24c 0deg, #8d5419 1turn);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.claim-step .step-content h3 {
    margin: 0 0 10px 0;
    color: #e0a24c;
}

.claim-step .step-content p {
    margin: 0;
    opacity: 0.9;
}

.top-bonuses h3 {
    margin: 30px 0 20px 0;
    color: #e0a24c;
}

/* Betting Page Specific Styles */
.start-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.start-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 162, 76, 0.2);
}

.start-step .step-number {
    background: conic-gradient(from 180deg at 50% 50%, #e0a24c 0deg, #8d5419 1turn);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.start-step .step-content h3 {
    margin: 0 0 10px 0;
    color: #e0a24c;
}

.start-step .step-content p {
    margin: 0;
    opacity: 0.9;
}

.betting-markets h3 {
    margin: 30px 0 20px 0;
    color: #e0a24c;
}

.markets-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.market-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    transition: transform 0.3s ease;
}

.market-item:hover {
    transform: translateY(-3px);
}

.market-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.market-header i {
    color: #e0a24c;
    font-size: 1.5rem;
}

.market-header h4 {
    margin: 0;
    color: #e0a24c;
    font-size: 1.2rem;
}

.market-details p {
    margin: 0 0 10px 0;
    opacity: 0.9;
}

.odds-range {
    background: #e0a24c;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Aviator Page Specific Styles */
.game-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.game-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 162, 76, 0.2);
}

.game-step .step-number {
    background: conic-gradient(from 180deg at 50% 50%, #e0a24c 0deg, #8d5419 1turn);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.game-step .step-content h3 {
    margin: 0 0 10px 0;
    color: #e0a24c;
}

.game-step .step-content p {
    margin: 0;
    opacity: 0.9;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.strategy-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    transition: transform 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-3px);
}

.strategy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.strategy-header h3 {
    margin: 0;
    color: #e0a24c;
}

.risk-level {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.risk-level.low {
    background: #28a745;
    color: #fff;
}

.risk-level.medium {
    background: #ffc107;
    color: #000;
}

.risk-level.high {
    background: #dc3545;
    color: #fff;
}

.risk-level.balanced {
    background: #17a2b8;
    color: #fff;
}

.strategy-card p {
    margin: 0;
    opacity: 0.9;
}

/* Live Casino Page Specific Styles */
.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.live-game {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-game:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 162, 76, 0.2);
}

.live-game i {
    font-size: 2.5rem;
    color: #e0a24c;
    margin-bottom: 15px;
}

.live-game h3 {
    margin: 0 0 15px 0;
    color: #e0a24c;
}

.live-game p {
    margin: 0;
    opacity: 0.9;
}

.live-bonuses-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.live-bonus-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 162, 76, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.live-bonus-item:hover {
    transform: translateY(-3px);
}

.live-bonus-item .bonus-icon {
    font-size: 2rem;
    min-width: 50px;
}

.live-bonus-item .bonus-content h3 {
    margin: 0 0 8px 0;
    color: #e0a24c;
}

.live-bonus-item .bonus-content p {
    margin: 0 0 8px 0;
    opacity: 0.9;
}

/* Hover Effects */

.advantage-item:hover {
    transform: translateY(-5px);
}

/* Focus States for Accessibility */
.btn:focus,
.nav-list a:focus {
    outline: 2px solid #e0a24c;
    outline-offset: 2px;
}

/* Loading States */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Content Images Styles */
.hero-image,
.why-choose-image,
.advantages-image,
.mobile-login-image,
.troubleshooting-image,
.app-features-image,
.app-bonuses-image,
.games-collection-image,
.mobile-games-image,
.slots-collection-image,
.mobile-slots-image,
.bonus-types-image,
.bonus-terms-image,
.how-to-start-image,
.cricket-betting-image,
.how-to-play-image,
.aviator-features-image,
.how-live-casino-works-image,
.popular-games-image {
    margin: 20px 0;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
}

.hero-image img,
.why-choose-image img,
.advantages-image img,
.mobile-login-image img,
.troubleshooting-image img,
.app-features-image img,
.app-bonuses-image img,
.games-collection-image img,
.mobile-games-image img,
.slots-collection-image img,
.mobile-slots-image img,
.bonus-types-image img,
.bonus-terms-image img,
.how-to-start-image img,
.cricket-betting-image img,
.how-to-play-image img,
.aviator-features-image img,
.how-live-casino-works-image img,
.popular-games-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.hero-image img:hover,
.mobile-login-image img:hover,
.troubleshooting-image img:hover,
.app-features-image img:hover,
.app-bonuses-image img:hover,
.games-collection-image img:hover,
.mobile-games-image img:hover,
.slots-collection-image img:hover,
.mobile-slots-image img:hover,
.bonus-types-image img:hover,
.bonus-terms-image img:hover,
.how-to-start-image img:hover,
.cricket-betting-image img:hover,
.how-to-play-image img:hover,
.aviator-features-image img:hover,
.how-live-casino-works-image img:hover,
.popular-games-image img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments for content images */
@media (max-width: 768px) {
    .hero-image,
    .mobile-login-image,
    .troubleshooting-image,
    .app-features-image,
    .app-bonuses-image,
    .games-collection-image,
    .mobile-games-image,
    .slots-collection-image,
    .mobile-slots-image,
    .bonus-types-image,
    .bonus-terms-image,
    .how-to-start-image,
    .cricket-betting-image,
    .how-to-play-image,
    .aviator-features-image,
    .how-live-casino-works-image,
    .popular-games-image {
        margin: 15px 0;
    }
    
    .hero-image img,
    .mobile-login-image img,
    .troubleshooting-image img,
    .app-features-image img,
    .app-bonuses-image img,
    .games-collection-image img,
    .mobile-games-image img,
    .slots-collection-image img,
    .mobile-slots-image img,
    .bonus-types-image img,
    .bonus-terms-image img,
    .how-to-start-image img,
    .cricket-betting-image img,
    .how-to-play-image img,
    .aviator-features-image img,
    .how-live-casino-works-image img,
    .popular-games-image img {
        max-width: 100%;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hero-image,
    .mobile-login-image,
    .troubleshooting-image,
    .app-features-image,
    .app-bonuses-image,
    .games-collection-image,
    .mobile-games-image,
    .slots-collection-image,
    .mobile-slots-image,
    .bonus-types-image,
    .bonus-terms-image,
    .how-to-start-image,
    .cricket-betting-image,
    .how-to-play-image,
    .aviator-features-image,
    .how-live-casino-works-image,
    .popular-games-image {
        margin: 10px 0;
    }
    
    .hero-image img,
    .mobile-login-image img,
    .troubleshooting-image img,
    .app-features-image img,
    .app-bonuses-image img,
    .games-collection-image img,
    .mobile-games-image img,
    .slots-collection-image img,
    .mobile-slots-image img,
    .bonus-types-image img,
    .bonus-terms-image img,
    .how-to-start-image img,
    .cricket-betting-image img,
    .how-to-play-image img,
    .aviator-features-image img,
    .how-live-casino-works-image img,
    .popular-games-image img {
        border-radius: 10px;
    }

    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 20px !important;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
}



.notice-marquee-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.notice-marquee-content {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
}

.notice-main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.notice-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.speaker {
    position: relative;
    width: 24px;
    height: 20px;
    background: #fbbf24;
    border-radius: 4px 0 0 4px;
    display: inline-block;
}

.speaker::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 4px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fbbf24;
}

.speaker::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 2px;
    width: 12px;
    height: 16px;
    border: 2px solid #fbbf24;
    border-left: none;
    border-radius: 0 50% 50% 0;
}

.marquee_box {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.custom-marquee {
    height: 100%;
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
}

.custom-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.notice_list {
    list-style: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 20px;
}

.notice_list li {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-right: 50px;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.notice_list li:last-child {
    margin-right: 0;
}

/* VIP badge styling */
.vip-badge {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 20px;
    margin-left: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .notice-marquee-container {
        border-radius: 6px;
    }
    
    .notice-marquee-content {
        height: 50px;
    }
    
    .notice-icon {
        width: 50px;
        height: 50px;
    }
    
    .speaker {
        width: 20px;
        height: 16px;
    }
    
    .notice_list li {
        font-size: 12px;
        margin-right: 30px;
    }
    
    .vip-badge {
        font-size: 10px;
        padding: 3px 8px;
        margin-left: 15px;
    }
}