:root {
    --primary: #2563eb;
    --secondary: #1e40af;
    --success: #10b981;
    --text-dark: #1e293b
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-bottom: 80px
}

.navy-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1rem 0
}

.ticker-container {
    width: 100%;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    color: #fff;
    padding: 14px 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1)
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 25s linear infinite
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 32px;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative
}

.ticker-item:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -5px;
    color: rgba(255, 255, 255, 0.6)
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@media (max-width:768px) {
    .ticker-item {
        font-size: 0.85rem;
        padding: 0 20px
    }
}

.hero-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
    min-height: 90vh;
    position: relative;
    overflow: hidden
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none
}

.hero-section::before {
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px
}

.hero-section::after {
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px
}

.slider-image {
    max-width: 90%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    margin: 0 auto;
    transition: transform 0.3s ease;
    border-radius: 12px
}

.slider-image:hover {
    transform: scale(1.02)
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.8
    }
}

.animate-pulse {
    animation: pulse 2s infinite
}

.typing-text {
    border-right: 2px solid;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(25) infinite, blink-caret 0.75s step-end infinite
}

@keyframes typing {
    0% {
        width: 0
    }

    50%,
    100% {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: currentColor
    }
}

.fixed-bottom-download {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 0
}

.full-width-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 18px 24px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s ease;
    cursor: pointer
}

.full-width-download-btn:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a)
}

.full-width-download-btn:active {
    opacity: 0.9
}

.download-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0
}

.download-text {
    font-size: 1.1rem;
    font-weight: 700
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px
}

.payment-logo-item {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease
}

.payment-logo-item:hover {
    transform: translateY(-2px)
}

.payment-logo-item img {
    width: 64px;
    height: 64px;
    object-fit: contain
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto
}

.feature-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease
}

.feature-item:hover {
    transform: translateY(-2px)
}

.feature-item img {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px
}

.safe-withdrawals-box {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px auto;
    max-width: 500px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3)
}

.safe-withdrawals-box img {
    width: 64px;
    height: 64px
}

.safe-withdrawals-box .text {
    font-size: 1.25rem;
    font-weight: 600
}

.payment-proof-swiper {
    padding: 20px 0 40px
}

.swiper-slide {
    height: auto
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb
}

.swiper-pagination-bullet-active {
    background: #2563eb !important
}

#gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out
}

@media (max-width:768px) {
    .full-width-download-btn {
        padding: 16px 20px;
        font-size: 1rem
    }

    .download-icon {
        width: 28px;
        height: 28px
    }

    .download-text {
        font-size: 1rem
    }
}

.container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px
}