/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #13092A;
    overflow-x: hidden;
}

.slots-table h3, .advantages h3, .player-reviews h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #4CCFB7;
}

.player-reviews {
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #173841;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Slider Styles */
.slider-section {
    width: 100%;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.banner-swiper {
    width: 100%;
    height: auto;
    min-height: 200px;
    border-radius: 15px;
    overflow: hidden;
}

.banner-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    min-height: 200px;
    display: block;
}

/* Swiper Navigation Buttons */
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    color: #4CCFB7;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
    background: rgba(76, 207, 183, 0.8);
    color: #ffffff;
    transform: scale(1.1);
}

.banner-swiper .swiper-button-next:after,
.banner-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.banner-swiper .swiper-pagination {
    bottom: 20px;
}

.banner-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: #4CCFB7;
    transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .banner-swiper {
        min-height: 200px;
    }
    
    .banner-swiper .swiper-slide img {
        min-height: 200px;
    }
    
    .banner-swiper .swiper-button-next,
    .banner-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .banner-swiper .swiper-button-next:after,
    .banner-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .banner-swiper .swiper-pagination {
        bottom: 10px;
    }
    
    .banner-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

.header .container {
    max-width: unset;
    padding: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4CCFB7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CCFB7;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 44px;
    justify-content: center;
}

 .btn-register {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding-right: 20px;
}

 .btn-register span {
    background: linear-gradient(283deg, #39bee9 9.48%, #50d2ae 51.57%, #66e578);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

 .btn-register i {
    color: #fff;
    background: linear-gradient(283deg, #39bee9 9.48%, #50d2ae 51.57%, #66e578);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: scaleIcon 1.5s ease-in-out infinite both;
}

 @keyframes scaleIcon {
    0%, 28%, 70%, 100% {
        transform: scale(1);
    }
    14%, 42% {
        transform: scale(1.1);
    }
}

 .btn-login {
    background: transparent;
    border: 2px solid #4CCFB7;
    color: #4CCFB7;
    padding: 10px 24px;
}

.btn-primary {
    background: linear-gradient(283deg, #39bee9 9.48%, #50d2ae 51.57%, #66e578);
    color: #1d212d;
    border: none;
    font-weight: 700;
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 190, 233, 0.4);
}


.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #4CCFB7;
}

.btn-secondary:hover {
    background: #4CCFB7;
    color: #1d212d;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}   

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #13092A 0%, #1a0f3a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(76, 207, 183, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(283deg, #39bee9 9.48%, #50d2ae 51.57%, #66e578);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hero-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-images img:hover {
    transform: translateY(-10px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #4CCFB7;
}

section p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background: #1a0f3a;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(76, 207, 183, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(76, 207, 183, 0.2);
    transition: all 0.2s ease;
}

.feature-item i {
    font-size: 3rem;
    color: #4CCFB7;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #ffffff;
}

.feature-item a {
    color: #4CCFB7;
    text-decoration: none;
}

.feature-item a:hover {
    text-decoration: underline;
}

/* Tables */
.slots-table,
.bonus-table {
    margin: 50px 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background: rgba(76, 207, 183, 0.2);
    color: #4CCFB7;
    font-weight: 600;
}

td {
    color: #e0e0e0;
}

tr:hover {
    background: rgba(76, 207, 183, 0.05);
}

/* Reviews Section */
.reviews {
    background: #1a0f3a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(76, 207, 183, 0.2);
    text-align: center;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stars i {
    color: #ffb547;
}

.review-item p {
    font-style: italic;
    color: #e0e0e0;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(76, 207, 183, 0.2);
}

.faq-item h3 {
    background: rgba(76, 207, 183, 0.1);
    padding: 20px;
    color: #4CCFB7;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: rgba(76, 207, 183, 0.2);
}

.faq-item p {
    padding: 20px;
    color: #e0e0e0;
    margin: 0;
    text-align: left;
}

main a:not(.btn) {
    color: #4CCFB7;
    text-decoration: none;
} 

main a:not(.btn):hover {
    text-decoration: underline;
}


/* Trust Section */
.trust {
    background: #1a0f3a;
}

.trust a:not(.btn) {
    color: #4CCFB7;
    text-decoration: none;
}

.trust a:not(.btn):hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #0a0515;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(76, 207, 183, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #4CCFB7;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CCFB7;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: #4CCFB7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 1280px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #173841;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    
    .logo img {
        height: 35px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn:not(.btn-login, .btn-register) {
        width: 100%;
        justify-content: center;
    }
    
    .hero-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 10px;
    }
}

@media (max-width: 530px) {
   .header-content {
    flex-wrap: wrap;
   } 

   .header-buttons {
    width: 100%;
    justify-content: center;
    order: 3;
    margin-top: 15px;
   }
}

@media (max-width: 550px) {
    .bonus-banner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
} 

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .hero-images img {
        height: 200px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-item,
.review-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 207, 183, 0.2);
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Images */
.section-image {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 30px auto;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.section-image img:hover {
    transform: translateY(-5px);
}

/* Additional Section Styles */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(76, 207, 183, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 207, 183, 0.2);
}

.step-number {
    background: linear-gradient(283deg, #39bee9 9.48%, #50d2ae 51.57%, #66e578);
    color: #1d212d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h3,
.step-content h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
}

.advantages ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.advantages li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.advantages i {
    color: #4CCFB7;
    font-size: 1.2rem;
}

.security-features,
.app-features,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.security-item,
.app-feature {
    text-align: center;
    padding: 20px;
    background: rgba(76, 207, 183, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 207, 183, 0.2);
}

.security-item i,
.app-feature i {
    font-size: 2.5rem;
    color: #4CCFB7;
    margin-bottom: 15px;
}

.download-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.download-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(76, 207, 183, 0.2);
}

.download-method h3 {
    color: #4CCFB7;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.guide-step {
    text-align: center;
    padding: 20px;
    background: rgba(76, 207, 183, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 207, 183, 0.2);
}

.guide-step .step-number {
    margin: 0 auto 15px;
}

.guide-step h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
}

.player-experiences {
    margin: 30px 0;
}

.player-experiences h3 {
    color: #4CCFB7;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.categories-table,
.game-types-table,
.features-table,
.markets-table,
.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.cta {
    background: #1a0f3a;
    text-align: center;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .steps-list {
        gap: 15px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .security-features,
    .app-features,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-methods {
        grid-template-columns: 1fr;
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
    }
    
    .step-content h3,
    .step-content h4 {
        font-size: 1rem;
    }
    
    .section-image {
        margin: 20px 0;
    }
    
    .section-image img {
        border-radius: 10px;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #4CCFB7;
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}
