@tailwind base;
@tailwind components;
@tailwind utilities;
html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-image: url('https://casinotop.club/img/bg.65e28d05.jpg');
    background-size: contain;
    background-repeat: repeat-y;
    background-attachment: scroll;
    background-position: top center;
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.games-section {
    position: relative;
    z-index: 10;
    margin-top: 40px;
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.game-card {
    background: #1d0247;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 70%;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 30%;
    text-align: center;
}

.game-title {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.game-provider {
    color: #755f8e;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.show-all-btn {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.show-all-btn:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.show-all-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}
@media (max-width: 768px) {
    body {
        background-image: none;
        background-color: #020100;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }

    .game-card {
        aspect-ratio: 1;
    }

    .game-info {
        padding: 10px;
    }

    .game-title {
        font-size: 13px;
    }

    .game-provider {
        font-size: 11px;
    }

    .show-all-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

.header-section,
.hero-slider-section {
    background: transparent;
    z-index: 100;
}

.bg-section-1,
.bg-section-2,
.bg-section-3,
.bg-section-4,
.bg-section-5,
.bg-section-6 {
    background-image: url('img/bg.65e28d05.jpg');
    background-size: contain;
    background-repeat: repeat-y;
    background-attachment: scroll;
    min-height: 100vh;
    position: relative;
}
.bg-section-1 {
    background-position: top center;
}

.bg-section-2 {
    background-position: center center;
}

.bg-section-3 {
    background-position: bottom center;
}

.bg-section-4 {
    background-position: center center;
}

.bg-section-5 {
    background-position: top center;
}

.bg-section-6 {
    background-position: bottom center;
}

.bg-section-1::before,
.bg-section-2::before,
.bg-section-3::before,
.bg-section-4::before,
.bg-section-5::before,
.bg-section-6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.bg-section-1 > *,
.bg-section-2 > *,
.bg-section-3 > *,
.bg-section-4 > *,
.bg-section-5 > *,
.bg-section-6 > * {
    position: relative;
    z-index: 2;
}
.header-section {
    background: rgba(11, 2, 22, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1150px;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
}

.logo img {
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.navbar {
    transition: all 0.3s ease;
}
.hero-slider-section {
    position: relative;
    z-index: 10;
    margin-top: 0;
}
.slider {
    position: relative;
    width: 1150px;
    max-width: 1150px;
    height: 400px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #0b0216;
    touch-action: pan-y pinch-zoom;
    user-select: none;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    touch-action: pan-y;
}

.slide {
    width: 100%;
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    will-change: transform;
}

.slide .absolute {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 2rem;
}

.slide button {
    margin-bottom: 0;
    margin-right: 0;
}
.slider-btn {
    position: absolute;
    bottom: 60px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.slider-btn-prev {
    left: 16px;
}

.slider-btn-next {
    left: 72px;
}
.slider-btn svg {
    width: 22px;
    height: 22px;
}
.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

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

.dot.active {
    background: #fbbf24;
    border-color: #fbbf24;
    transform: scale(1.2);
}

.hero-section {
    background: transparent;
    backdrop-filter: blur(5px);
    margin-top: 80px;
}

.footer-section {
    background: linear-gradient(135deg, #0b0216, #1a0b2e, #0b0216);
    margin-top: auto;
    color: white;
    border-top: 2px solid #a310f5;
    max-width: 1150px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.footer-content {
    margin-bottom: 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}
.footer-heading {
    color: #a310f5;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #a310f5;
    padding-bottom: 5px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}
.footer-link {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}
.footer-link:hover {
    color: #fbbf24;
    transform: translateX(5px);
    text-shadow: 0 0 5px #fbbf24;
}

.payment-methods {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(163, 16, 245, 0.3);
}
.payment-heading {
    color: #a310f5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-icon:hover {
    background: rgba(163, 16, 245, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(163, 16, 245, 0.3);
}

.payment-logo {
    width: 40px;
    height: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.crypto-text {
    color: #fbbf24;
    font-weight: 700;
    font-size: 10px;
    text-shadow: 0 0 5px #fbbf24;
}
.footer-main-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(163, 16, 245, 0.2);
}
.main-heading {
    color: #a310f5;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #a310f5;
}
.content-text {
    color: #e2e8f0;
    line-height: 1.6;
    font-size: 13px;
}
.content-text p {
    margin-bottom: 15px;
}
.sub-heading {
    color: #fbbf24;
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    border-left: 4px solid #fbbf24;
    padding-left: 15px;
}
.content-list {
    margin: 15px 0;
    padding-left: 20px;
}

.content-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.content-list strong {
    color: #a310f5;
}
.show-more-btn {
    background: linear-gradient(135deg, #a310f5, #8b5cf6);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(163, 16, 245, 0.3);
}
.show-more-btn:hover {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 16, 245, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(163, 16, 245, 0.3);
    padding-top: 20px;
    text-align: center;
}
.copyright {
    color: #94a3b8;
    font-size: 12px;
    margin: 0;
}
@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-heading {
        font-size: 14px;
    }
    
    .footer-link {
        font-size: 11px;
    }
.payment-icons {
        gap: 15px;
    }
    
    .payment-icon {
        width: 50px;
        height: 35px;
    }
    
    .payment-logo {
        width: 35px;
        height: 20px;
    }
    
    .footer-main-content {
        padding: 20px;
    }
    .main-heading {
        font-size: 22px;
    }
    
    .sub-heading {
        font-size: 16px;
    }
    
    .content-text {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .payment-icons {
        gap: 10px;
    }
    
    .payment-icon {
        width: 45px;
        height: 30px;
    }
    
    .payment-logo {
        width: 30px;
        height: 18px;
    }
    
    .crypto-text {
        font-size: 10px;
    }
    
    .footer-main-content {
        padding: 15px;
    }
    .main-heading {
        font-size: 18px;
    }
    
    .sub-heading {
        font-size: 14px;
    }
    
    .content-text {
        font-size: 11px;
    }
    
    .show-more-btn {
        padding: 10px 25px;
        font-size: 10px;
    }
}
html {
    scroll-behavior: smooth;
}
.fade-in {
    animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}
@media (max-width: 768px) {
    .header-section {
        width: 100%;
        border-radius: 0 0 0 0;
    }
    
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .logo img {
        height: 2.5rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    .hero-slider-section {
        margin-top: 100px;
    }
.slider {
        width: 100%;
        max-width: 100%;
        height: 300px;
        border-radius: 0;
        box-shadow: none;
        min-height: 200px;
    }
.slider-track {
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .slide {
        min-height: 200px;
    }
    
    .slide img {
        object-fit: cover;
        aspect-ratio: 16/9;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        bottom: 50px;
        padding: 8px;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
    }
    
    .slider-btn svg {
        width: 18px;
        height: 18px;
    }
    .slider-btn-prev {
        left: 8px;
    }
    
    .slider-btn-next {
        left: 56px;
    }
.dot {
        width: 10px;
        height: 10px;
        padding: 4px;
        margin: 2px;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 8px;
    }
    
    .hero-section {
        padding: 60px 0;
        margin-top: 70px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .bg-section-1,
    .bg-section-2,
    .bg-section-3,
    .bg-section-4,
    .bg-section-5,
    .bg-section-6 {
        min-height: 50vh;
        background-size: cover;
        background-repeat: no-repeat;
    }
}
.featured-images-section {
    position: relative;
    z-index: 10;
    margin-top: 0;
}
.featured-images-row {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 20px;
    padding: 0 20px;
}

.featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-image-1 {
    flex: 0 0 45%;
}
.featured-image-2 {
    flex: 0 0 20%;
    margin-left: auto;
}
.featured-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.featured-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .featured-images-row {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .featured-image-1,
    .featured-image-2 {
        flex: 0 0 100%;
    }
    
    .featured-images-section {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .featured-images-row {
        gap: 10px;
        padding: 0 10px;
    }
    .featured-images-section {
        margin-top: 15px;
    }
}
.jackpot-section {
    position: relative;
    z-index: 10;
    margin-top: 30px;
    margin-bottom: 30px;
}

.jackpot-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.jackpot-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.jackpot-item:first-child {
    justify-content: flex-start;
}

.jackpot-item:last-child {
    justify-content: flex-end;
}

.spade-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(139, 221, 240, 0.5));
    animation: pulse-glow 2s ease-in-out infinite;
}

.jackpot-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #8bddf0;
    text-shadow: 
        0 0 5px #8bddf0,
        0 0 10px #8bddf0,
        0 0 15px #8bddf0,
        0 0 20px #8bddf0;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    animation: neon-flicker 3s ease-in-out infinite alternate;
    white-space: nowrap;
}

.jackpot-amount-small {
    font-size: 3rem;
    letter-spacing: 1.5px;
}

.jackpot-amount-xs {
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.jackpot-amount-xxs {
    font-size: 2rem;
    letter-spacing: 0.5px;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(139, 221, 240, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(139, 221, 240, 0.8));
    }
}

@keyframes neon-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 5px #8bddf0,
            0 0 10px #8bddf0,
            0 0 15px #8bddf0,
            0 0 20px #8bddf0;
    }
    20%, 24%, 55% {
        text-shadow: 
            0 0 2px #8bddf0,
            0 0 5px #8bddf0,
            0 0 8px #8bddf0;
    }
}
@media (max-width: 1100px) {
    .jackpot-container {
        max-width: 95%;
        padding: 0 15px;
    }
}

@media (max-width: 900px) {
    .jackpot-amount {
        font-size: 3rem;
    }
    
    .spade-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .jackpot-container {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .jackpot-item {
        justify-content: center;
        text-align: center;
    }
    
    .jackpot-item:first-child,
    .jackpot-item:last-child {
        justify-content: center;
    }
    
    .spade-icon {
        width: 45px;
        height: 45px;
    }
    
    .jackpot-amount {
        font-size: 2.5rem;
    }
    
    .jackpot-amount-small {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .jackpot-container {
        padding: 0 10px;
        gap: 20px;
    }
    
    .spade-icon {
        width: 40px;
        height: 40px;
    }
    
    .jackpot-amount {
        font-size: 2rem;
    }
    
    .jackpot-amount-small {
        font-size: 1.8rem;
    }
    
    .jackpot-amount-xs {
        font-size: 1.6rem;
    }
    
    .jackpot-amount-xxs {
        font-size: 1.4rem;
    }
}

@media (max-width: 360px) {
    .spade-icon {
        width: 35px;
        height: 35px;
    }
    
    .jackpot-amount {
        font-size: 1.8rem;
        letter-spacing: 0.3px;
    }
    
    .jackpot-amount-small {
        font-size: 1.6rem;
    }
}

.neon-navigation-section {
    position: relative;
    z-index: 10;
    margin-top: 40px;
    margin-bottom: 20px;
}
.neon-nav-container {
    display: flex;
    justify-content: center;
    width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.neon-nav {
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding: 25px 35px;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #a310f5;
    border-radius: 15px;
    box-shadow: 
        0 0 20px #a310f5,
        inset 0 0 20px rgba(163, 16, 245, 0.1),
        0 0 40px rgba(163, 16, 245, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
}
.neon-nav::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #a310f5, transparent, #a310f5, transparent, #a310f5);
    border-radius: 15px;
    z-index: -1;
    animation: neon-border-glow 3s linear infinite;
}

@keyframes neon-border-glow {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.neon-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.neon-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(163, 16, 245, 0.3), transparent);
    transition: left 0.5s ease;
}

.neon-nav-item:hover::before {
    left: 100%;
}

.neon-nav-item:hover {
    border-color: #a310f5;
    box-shadow: 
        0 0 15px rgba(163, 16, 245, 0.5),
        inset 0 0 15px rgba(163, 16, 245, 0.1);
    transform: translateY(-2px);
    color: #a310f5;
}

.neon-nav-item:active {
    transform: translateY(0);
    box-shadow: 
        0 0 10px rgba(163, 16, 245, 0.3),
        inset 0 0 10px rgba(163, 16, 245, 0.1);
}

.nav-icon {
    width: 24px;
    height: 24px;
    color: currentColor;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px currentColor);
}

.neon-nav-item:hover .nav-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px currentColor);
}

.nav-text {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px currentColor;
}
@media (max-width: 1200px) {
    .neon-nav {
        max-width: 95%;
        padding: 20px 25px;
    }
}

@media (max-width: 1024px) {
    .neon-nav {
        flex-wrap: wrap;
        gap: 8px;
        padding: 18px 20px;
        justify-content: center;
    }
    
    .neon-nav-item {
        padding: 12px 15px;
        font-size: 12px;
        flex: 0 0 calc(33.333% - 6px);
        max-width: calc(33.333% - 6px);
        min-height: 70px;
    }
    
    .nav-icon {
        width: 22px;
        height: 22px;
    }
    
    .nav-text {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .neon-navigation-section {
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .neon-nav-container {
        padding: 0 15px;
        width: 100%;
    }
    
    .neon-nav {
        gap: 6px;
        padding: 15px 18px;
        border-width: 2px;
        box-shadow: 
            0 0 15px #a310f5,
            inset 0 0 15px rgba(163, 16, 245, 0.1),
            0 0 30px rgba(163, 16, 245, 0.2);
    }
    
    .neon-nav-item {
        padding: 12px 10px;
        font-size: 11px;
        flex: 0 0 calc(50% - 3px);
        max-width: calc(50% - 3px);
        min-height: 75px;
        border-width: 2px;
        position: relative;
        z-index: 1;
    }
    
    .nav-icon {
        width: 20px;
        height: 20px;
    }
    
    .nav-text {
        font-size: 9px;
        line-height: 1.2;
    }
}

@media (max-width: 600px) {
    .neon-nav {
        padding: 12px 15px;
        gap: 5px;
        border-radius: 12px;
    }
    
    .neon-nav-item {
        padding: 10px 8px;
        min-height: 70px;
        font-size: 10px;
    }
    
    .nav-icon {
        width: 18px;
        height: 18px;
    }
    
    .nav-text {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .neon-navigation-section {
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .neon-nav-container {
        padding: 0 8px;
    }
    
    .neon-nav {
        gap: 4px;
        padding: 10px 12px;
        border-radius: 10px;
        border-width: 2px;
    }
    
    .neon-nav-item {
        padding: 8px 6px;
        flex: 0 0 calc(50% - 2px);
        max-width: calc(50% - 2px);
        min-height: 65px;
        font-size: 9px;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }
    
    .neon-nav-item::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(163, 16, 245, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .neon-nav-item:active::before {
        transform: translateX(0);
    }
    
    .nav-icon {
        width: 16px;
        height: 16px;
        margin-bottom: 2px;
    }
    
    .nav-text {
        font-size: 7px;
        opacity: 0.9;
        line-height: 1.1;
    }
}

@media (max-width: 380px) {
    .neon-nav-container {
        padding: 0 5px;
    }
    
    .neon-nav {
        gap: 3px;
        padding: 8px 10px;
    }
    
    .neon-nav-item {
        padding: 6px 4px;
        min-height: 60px;
        font-size: 8px;
        border-radius: 6px;
    }
    
    .nav-icon {
        width: 14px;
        height: 14px;
    }
    
    .nav-text {
        font-size: 6px;
    }
}

@media (max-width: 320px) {
    .neon-nav {
        padding: 6px 8px;
        gap: 2px;
    }
    
    .neon-nav-item {
        padding: 5px 3px;
        min-height: 55px;
        font-size: 7px;
    }
    
    .nav-icon {
        width: 12px;
        height: 12px;
    }
    
    .nav-text {
        font-size: 5px;
    }
}
@media (max-height: 500px) and (orientation: landscape) {
    .neon-navigation-section {
        margin-top: 15px;
        margin-bottom: 10px;
    }
    
    .neon-nav {
        padding: 8px 15px;
        gap: 5px;
    }
    
    .neon-nav-item {
        padding: 6px 10px;
        min-height: 50px;
        flex: 0 0 calc(25% - 4px);
        max-width: calc(25% - 4px);
    }
    
    .nav-icon {
        width: 16px;
        height: 16px;
    }
    
    .nav-text {
        font-size: 8px;
    }
}
.neon-nav-item.active {
    border-color: #a310f5;
    background: rgba(163, 16, 245, 0.2);
    color: #a310f5;
    box-shadow: 
        0 0 15px rgba(163, 16, 245, 0.4),
        inset 0 0 15px rgba(163, 16, 245, 0.1);
}

.neon-nav-item.active .nav-icon {
    filter: drop-shadow(0 0 10px #a310f5);
}
@media (max-width: 480px) {
    .hero-slider-section {
        margin-top: 80px;
    }
.slider {
        height: 250px;
        min-height: 180px;
    }
.slide {
        min-height: 180px;
    }
    .slider-btn {
        width: 36px;
        height: 36px;
        bottom: 45px;
        padding: 6px;
    }
    
    .slider-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .slider-btn-prev {
        left: 8px;
    }
    
    .slider-btn-next {
        left: 52px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dots {
        bottom: 8px;
        gap: 6px;
    }
}
.slide-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .slider-track {
        transition: none;
    }
    
    .slide img {
        transition: none;
    }
}
.providers-section {
    position: relative;
    z-index: 10;
    margin-top: 40px;
    margin-bottom: 40px;
}

.providers-carousel-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.providers-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.providers-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.provider-item {
    flex: 0 0 auto;
    width: 140px;
}

.provider-capsule {
    width: 140px;
    height: 80px;
    background: #2e0157;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(46, 1, 87, 0.3);
}

.provider-capsule:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(46, 1, 87, 0.5);
}

.provider-logo {
    width: 90px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.provider-capsule:hover .provider-logo {
    filter: brightness(1) invert(0);
}
@media (max-width: 768px) {
    .providers-carousel-wrapper {
        padding: 0 15px;
    }
    
    .provider-item {
        width: 120px;
    }
    
    .provider-capsule {
        width: 120px;
        height: 70px;
        border-radius: 20px;
    }
    
    .provider-logo {
        width: 80px;
        height: 40px;
    }
    
    .providers-track {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .providers-carousel-wrapper {
        padding: 0 10px;
    }
    
    .provider-item {
        width: 100px;
    }
    
    .provider-capsule {
        width: 100px;
        height: 60px;
        border-radius: 15px;
    }
    
    .provider-logo {
        width: 70px;
        height: 35px;
    }
    
    .providers-track {
        gap: 12px;
    }
}
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.bg-section-1,
.bg-section-2,
.bg-section-3,
.bg-section-4,
.bg-section-5,
.bg-section-6 {
    background-image: url(' img/bg.65e28d05.jpg');
    background-size: contain;
    background-repeat: repeat-y;
    background-attachment: scroll;
    min-height: 100vh;
    position: relative;
}

.bg-section-1 {
    background-position: top center;
}

.bg-section-2 {
    background-position: center center;
}

.bg-section-3 {
    background-position: bottom center;
}

.bg-section-4 {
    background-position: center center;
}

.bg-section-5 {
    background-position: top center;
}

.bg-section-6 {
    background-position: bottom center;
}
.bg-section-1::before,
.bg-section-2::before,
.bg-section-3::before,
.bg-section-4::before,
.bg-section-5::before,
.bg-section-6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.bg-section-1 > *,
.bg-section-2 > *,
.bg-section-3 > *,
.bg-section-4 > *,
.bg-section-5 > *,
.bg-section-6 > * {
    position: relative;
    z-index: 2;
}
.header-section {
    background: #0b0216;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1150px;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
}
.logo img {
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}
.navbar {
    transition: all 0.3s ease;
}
.hero-slider-section {
    position: relative;
    z-index: 10;
    margin-top: 100px;
}
.slider {
    position: relative;
    width: 1150px;
    max-width: 1150px;
    height: 400px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #0b0216;
    touch-action: pan-y pinch-zoom;
    user-select: none;
}
.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    touch-action: pan-y;
}

.slide {
    width: 100%;
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}
    .slide img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        will-change: transform;
    }
.slider-btn {
    position: absolute;
    bottom: 60px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.slider-btn-prev {
    left: 16px;
}

.slider-btn-next {
    left: 72px;
}
.slider-btn svg {
    width: 22px;
    height: 22px;
}
.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

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

.dot.active {
    background: #fbbf24;
    border-color: #fbbf24;
    transform: scale(1.2);
}
.hero-section {
    background: transparent;
    backdrop-filter: blur(5px);
    margin-top: 80px;
}
.footer-section {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
    .header-section {
        width: 100%;
        border-radius: 0 0 0 0;
    }
    
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .logo img {
        height: 2.5rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    .hero-slider-section {
        margin-top: 80px;
    }
.slider {
        width: 100%;
        max-width: 100%;
        height: 300px;
        border-radius: 0;
        box-shadow: none;
        min-height: 200px;
    }
.slider-track {
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .slide {
        min-height: 200px;
    }
    
    .slide img {
        object-fit: cover;
        aspect-ratio: 16/9;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        bottom: 50px;
        padding: 8px;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
    }
    
    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-btn-prev {
        left: 8px;
    }
    
    .slider-btn-next {
        left: 56px;
    }
.dot {
        width: 10px;
        height: 10px;
        padding: 4px;
        margin: 2px;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 8px;
    }
    
    .hero-section {
        padding: 60px 0;
        margin-top: 70px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .bg-section-1,
    .bg-section-2,
    .bg-section-3,
    .bg-section-4,
    .bg-section-5,
    .bg-section-6 {
        min-height: 50vh;
        background-size: cover;
        background-repeat: no-repeat;
    }
}
@media (max-width: 480px) {
    .hero-slider-section {
        margin-top: 70px;
    }
.slider {
        height: 250px;
        min-height: 180px;
    }
.slide {
        min-height: 180px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    
    .slider-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dots {
        bottom: 8px;
        gap: 6px;
    }
}
@media (max-width: 768px) {
    .slide h2 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem;
    }
    
    .slide h3 {
        font-size: 1.25rem !important;
        line-height: 1.2 !important;
    }
    
    .slide .absolute {
        padding: 1rem !important;
    }
    
    .slide .absolute.top-8 {
        top: 1rem !important;
    }
    
    .slide .absolute.top-8.left-8 {
        left: 1rem !important;
        max-width: 45% !important;
    }
    
    .slide .absolute.top-8.right-8 {
        right: 1rem !important;
        max-width: 45% !important;
        text-align: right !important;
    }
    
    .slide .flex.justify-end.items-end.h-full {
        justify-content: center !important;
        align-items: flex-end !important;
        margin: 0 auto !important;
    }
    
    .slide .px-8 {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .slide h2 {
        font-size: 1.25rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.25rem;
    }
    
    .slide h3 {
        font-size: 1rem !important;
        line-height: 1.1 !important;
    }
    
    .slide .absolute {
        padding: 0.75rem !important;
    }
    
    .slide .absolute.top-8 {
        top: 0.75rem !important;
    }
    
    .slide .absolute.top-8.left-8 {
        left: 0.75rem !important;
        max-width: 50% !important;
    }
    
    .slide .absolute.top-8.right-8 {
        right: 0.75rem !important;
        max-width: 50% !important;
        text-align: right !important;
    }
    
    .slide .px-8 {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
        margin-bottom: 0.25rem !important;
    }
}
.slide-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .slider-track {
        transition: none;
    }
    
    .slide img {
        transition: none;
    }
}
html {
    scroll-behavior: smooth;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}