/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Awesome Icons */
.fas {
    margin-right: 8px;
}

.stars .fas {
    margin-right: 2px;
    color: #ffc107;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #5375D0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a6bc7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: #5375D0;
    color: #fff;
    border: 2px solid #5375D0;
}

.btn-primary:hover {
    background-color: #4a6bc7;
    border-color: #4a6bc7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(83, 117, 208, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #5375D0;
    border: 2px solid #5375D0;
}

.btn-secondary:hover {
    background-color: #5375D0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(83, 117, 208, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 56px;
}

/* Header */
.header {
    background-color: #5375D0;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .container {
    max-width: unset;
}

.logo img {
    height: 40px;
    width: auto;
}

.header .btn-primary, .hero .btn-primary, .cta-section .btn-primary {
    color: #5375D0;
    background-color: #fff;
}

.header .btn-primary:hover, .hero .btn-primary:hover, .cta-section .btn-primary:hover {
    color: #5375D0;
    background-color: #fff;
    transform: translateY(-2px);
}

.header .btn-secondary, .hero .btn-secondary, .cta-section .btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}

.header .btn-secondary:hover, .hero .btn-secondary:hover, .cta-section .btn-secondary:hover {
    color: #fff;
    background-color: #5375D0;
    transform: translateY(-2px);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #5375D0 0%, #4a6bc7 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffd700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Why TK685 Section */
.why-tk685 {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: #5375D0;
    margin: 0;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #333;
}

/* Payment Methods Section */
.payment-methods {
    padding: 4rem 0;
}

.payment-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

.payment-table th,
.payment-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.payment-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.payment-table tr:hover {
    background-color: #f8f9fa;
}

.payment-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Casino Games Section */
.casino-games {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.games-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

.games-table th,
.games-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.games-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.games-table tr:hover {
    background-color: #f8f9fa;
}

.games-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bonuses Section */
.bonuses {
    padding: 4rem 0;
}

.bonus-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

.bonus-table th,
.bonus-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.bonus-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.bonus-table tr:hover {
    background-color: #f8f9fa;
}

.bonus-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile App Section */
.mobile-app {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-app-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

/* Casino Games Section */
.casino-games {
    padding: 4rem 0;
}

.casino-games-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.casino-games-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sports Betting Section */
.sports-betting {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.sports-betting-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.sports-betting-image {
    margin: 1rem 0;
}

.sports-betting-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sports-betting-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review-item.expert-review {
    background: linear-gradient(135deg, #5375D0 0%, #4a6bc7 100%);
    color: #fff;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reviewer {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.expert-review .reviewer {
    color: #ffd700;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #5375D0 0%, #4a6bc7 100%);
    color: #fff;
    text-align: center;
}

.cta-section .section-title,
.cta-section .section-description {
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-item h3 {
    background-color: #5375D0;
    color: #fff;
    padding: 1rem;
    margin: 0;
    font-size: 1.1rem;
}

.faq-item p {
    padding: 1rem;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #5375D0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5375D0;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mobile-app-content,
    .casino-games-content,
    .sports-betting-content,
    .login-steps-content,
    .trust-security-content,
    .why-app-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .casino-games-image,
    .sports-betting-image,
    .login-steps-image,
    .trust-security-image,
    .why-app-image,
    .why-games-image,
    .why-slots-image,
    .why-bonus-image,
    .why-betting-image,
    .why-aviator-image,
    .why-live-casino-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 1300px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    
    .logo img {
        height: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-buttons,
    .games-buttons,
    .bonus-buttons,
    .mobile-app-buttons,
    .sports-betting-buttons,
    .cta-buttons,
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .logo img {
        height: 20px;
    }

    .btn i {
        display: none;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

/* Login Steps Section */
.login-steps {
    padding: 4rem 0;
}

.login-steps-content {
    align-items: center;
    margin-bottom: 3rem;
}

.login-steps-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #5375D0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.mini-guide {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

.login-advantages {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.advantages-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5375D0;
    font-weight: bold;
}

.login-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Trust and Security Section */
.trust-security {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.trust-security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trust-security-image img,
.security-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.security-image {
    text-align: center;
    margin-top: 3rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.security-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.security-item i {
    font-size: 3rem;
    color: #5375D0;
    margin-bottom: 1rem;
}

.security-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.security-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Login Section */
.mobile-login {
    padding: 4rem 0;
}

.mobile-login-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.mobile-login-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.device-comparison {
    margin: 2rem 0;
    width: 100%;
    overflow-x: auto;
    box-sizing: border-box;
}

.device-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 100%;
}

.device-table th,
.device-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.device-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.device-table tr:hover {
    background-color: #f8f9fa;
}

.mobile-login-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.ranking-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #666;
}

/* Mobile Menu Styles */
.nav.mobile-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #5375D0;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav.mobile-open .nav-list {
    flex-direction: column;
    gap: 1rem;
}

.nav.mobile-open .nav-link {
    text-align: center;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* App Page Styles */
.why-app {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.why-app-content {
    align-items: center;
}

.why-app-image img,
.app-comparison-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-comparison-image {
    text-align: center;
    margin-top: 3rem;
}

/* Games Page Styles */
.why-games-image img,
.casino-games-detailed-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.casino-games-detailed-image {
    text-align: center;
    margin-top: 3rem;
}

/* Slots Page Styles */
.why-slots-image img,
.top-slots-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.top-slots-image {
    text-align: center;
    margin-top: 3rem;
}

/* Bonus Page Styles */
.why-bonus-image img,
.bonus-categories-image img,
.reviews-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bonus-categories-image,
.reviews-image {
    text-align: center;
    margin-top: 3rem;
}

/* Betting Page Styles */
.why-betting-image img,
.cricket-betting-image img,
.live-betting-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cricket-betting-image,
.live-betting-image {
    text-align: center;
    margin-top: 3rem;
}

/* Aviator Page Styles */
.why-aviator-image img,
.aviator-guide-image img,
.aviator-reviews-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.aviator-guide-image,
.aviator-reviews-image {
    text-align: center;
    margin-top: 3rem;
}

/* Live Casino Page Styles */
.why-live-casino-image img,
.live-games-image img,
.mobile-live-casino-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.live-games-image,
.mobile-live-casino-image {
    text-align: center;
    margin-top: 3rem;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    margin: 4rem auto;
    padding: 0 15px;
    max-width: 1200px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    height: 100%;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-swiper .swiper-slide picture {
    width: 100%;
    display: block;
}

/* Swiper Navigation */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #5375D0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
    bottom: 20px !important;
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #5375D0;
    transform: scale(1.2);
}

.mobile-login-text {
    width: 100%;
}

/* Responsive Slider */
@media (max-width: 768px) {

    .download-content, .download-steps, .app-features-content, .mobile-slots-content{
        grid-template-columns: 1fr !important;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }
    
    .mobile-login-content {
        flex-direction: column;
    }

    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 14px;
    }
}
.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.app-comparison {
    margin: 3rem 0;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:hover {
    background-color: #f8f9fa;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Download Instructions Section */
.download-instructions {
    padding: 4rem 0;
}

.download-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.download-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.download-step {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-step h3 {
    color: #5375D0;
    margin-bottom: 1rem;
}

.download-step ol {
    padding-left: 1.5rem;
}

.download-step li {
    margin-bottom: 0.5rem;
    color: #666;
}

.app-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.spec-item i {
    color: #5375D0;
    font-size: 1.2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* App Features Section */
.app-features-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.app-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-features-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5375D0;
    font-weight: bold;
}

.app-features-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* App Comparison Section */
.app-comparison-section {
    padding: 4rem 0;
}

.comparison-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.comparison-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-item i {
    font-size: 3rem;
    color: #5375D0;
    margin-bottom: 1rem;
}

.comparison-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.comparison-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Games Page Styles */
.why-games {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.games-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.games-categories {
    margin: 3rem 0;
    overflow-x: auto;
}

.categories-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

.categories-table th,
.categories-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.categories-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.categories-table tr:hover {
    background-color: #f8f9fa;
}

.games-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Casino Games Detailed Section */
.casino-games-detailed {
    padding: 4rem 0;
}

.games-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-list li {
    padding: 1rem;
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #5375D0;
}

.top-games-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.games-detail-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 600px;
}

.games-detail-table th,
.games-detail-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.games-detail-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.games-detail-table tr:hover {
    background-color: #f8f9fa;
}

.games-action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Live Casino Games Section */
.live-casino-games {
    padding: 4rem 0;
    background-color: #f8f9fa;
}


.live-casino-image img, .casino-games-detailed-image img, .top-slots-image img, .why-slots-image img{
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.live-features {
    margin: 2rem 0;
    overflow-x: auto;
}

.live-features-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 400px;
}

.live-features-table th,
.live-features-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.live-features-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.live-features-table tr:hover {
    background-color: #f8f9fa;
}

.live-casino-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Slots Page Styles */
.why-slots {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.slots-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.slots-types {
    margin: 3rem 0;
    overflow-x: auto;
}

.slots-types-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

.slots-types-table th,
.slots-types-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.slots-types-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.slots-types-table tr:hover {
    background-color: #f8f9fa;
}

.slots-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Top Slots Section */
.top-slots {
    padding: 4rem 0;
}

.top-slots-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.top-slots-list li {
    padding: 1rem;
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #5375D0;
}

.top-slots-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.slots-detail-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 600px;
}

.slots-detail-table th,
.slots-detail-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.slots-detail-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.slots-detail-table tr:hover {
    background-color: #f8f9fa;
}

.top-slots-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Slots Section */
.mobile-slots {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.mobile-slots-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-slots-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.mobile-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.mobile-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.mobile-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5375D0;
    font-weight: bold;
}

.mobile-slots-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Slots Comparison Section */
.slots-comparison {
    padding: 4rem 0;
}

.ranking-note {
    text-align: center;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

/* Bonus Page Styles */
.why-bonus {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-types {
    margin: 3rem 0;
    overflow-x: auto;
}

.bonus-types-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 600px;
}

.bonus-types-table th,
.bonus-types-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.bonus-types-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.bonus-types-table tr:hover {
    background-color: #f8f9fa;
}

.bonus-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bonus Types Section */
.bonus-types-section {
    padding: 4rem 0;
}

.bonus-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-category {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bonus-category h3 {
    color: #5375D0;
    margin-bottom: 1rem;
}

.bonus-categories-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.categories-detail-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 600px;
}

.categories-detail-table th,
.categories-detail-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.categories-detail-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.categories-detail-table tr:hover {
    background-color: #f8f9fa;
}

.bonus-categories-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* How to Claim Section */
.how-to-claim {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.claim-step {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.claim-step h3 {
    color: #333;
    margin-bottom: 1rem;
}

.claim-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.claim-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.claim-feature i {
    color: #5375D0;
    font-size: 1.2rem;
}

.claim-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Betting Page Styles */
.why-betting {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.betting-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sports-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.sports-table-content {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

.sports-table-content th,
.sports-table-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.sports-table-content th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.sports-table-content tr:hover {
    background-color: #f8f9fa;
}

.betting-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cricket Betting Section */
.cricket-betting {
    padding: 4rem 0;
}

.cricket-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cricket-feature {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cricket-feature i {
    font-size: 3rem;
    color: #5375D0;
    margin-bottom: 1rem;
}

.cricket-feature h3 {
    color: #333;
    margin-bottom: 1rem;
}

.cricket-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Live Betting Section */
.live-betting {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.live-feature {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.live-feature i {
    font-size: 3rem;
    color: #5375D0;
    margin-bottom: 1rem;
}

.live-feature h3 {
    color: #333;
    margin-bottom: 1rem;
}

.live-betting-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.live-features-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 400px;
}

.live-features-table th,
.live-features-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.live-features-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.live-features-table tr:hover {
    background-color: #f8f9fa;
}

.live-betting-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Aviator Page Styles */
.what-aviator {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.aviator-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.aviator-mechanics {
    margin: 3rem 0;
    overflow-x: auto;
}

.mechanics-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 400px;
}

.mechanics-table th,
.mechanics-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.mechanics-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.mechanics-table tr:hover {
    background-color: #f8f9fa;
}

.aviator-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* How to Play Section */
.how-to-play {
    padding: 4rem 0;
}

.play-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.play-step {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.play-step h3 {
    color: #333;
    margin-bottom: 1rem;
}

.play-tips {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.play-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Aviator Section */
.why-aviator {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.aviator-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.advantage-item i {
    font-size: 3rem;
    color: #5375D0;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.expert-quote {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    text-align: center;
    font-style: italic;
}

.aviator-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Live Casino Page Styles */
.why-live-casino {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.live-casino-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.live-games-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.games-categories-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

.games-categories-table th,
.games-categories-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.games-categories-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.games-categories-table tr:hover {
    background-color: #f8f9fa;
}

.live-casino-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Top Live Games Section */
.top-live-games {
    padding: 4rem 0;
}

.live-games-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.live-game-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.live-game-item h3 {
    color: #5375D0;
    margin-bottom: 1rem;
}

.experience-comparison {
    margin: 3rem 0;
    overflow-x: auto;
}

.experience-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

.experience-table th,
.experience-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.experience-table th {
    background-color: #5375D0;
    color: #fff;
    font-weight: 600;
}

.experience-table tr:hover {
    background-color: #f8f9fa;
}

.live-games-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Live Bonuses Section */
.live-bonuses {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.bonus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-type {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bonus-type i {
    font-size: 3rem;
    color: #5375D0;
    margin-bottom: 1rem;
}

.bonus-type h3 {
    color: #333;
    margin-bottom: 1rem;
}

.bonus-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Live Casino Section */
.mobile-live-casino {
    padding: 4rem 0;
}


.mobile-live-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.mobile-live-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.mobile-live-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.mobile-live-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5375D0;
    font-weight: bold;
}

.mobile-live-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: center;
}
