/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0d1a;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a30 100%);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Remove the diagonal white line */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0d1a;
    z-index: -1;
}

/* Top Banner with Marquee */
.top-banner {
    background: linear-gradient(90deg, #d4af37, #f2d35b, #d4af37);
    color: #000;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
    position: relative;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0 30px;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header Styles */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(20, 20, 40, 0.8);
    border-bottom: 2px solid #d4af37;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.casino-logo {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

.lucky {
    color: #ffffff;
}

.seven {
    color: #d4af37;
    font-size: 38px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

.tagline {
    font-size: 12px;
    letter-spacing: 2px;
    color: #a0a0a0;
    margin-top: 5px;
}

.jackpot-counter {
    text-align: right;
}

.jackpot-label {
    font-size: 12px;
    color: #a0a0a0;
    letter-spacing: 1px;
}

.jackpot-amount {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.accent {
    color: #d4af37;
    position: relative;
}

.accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #d4af37;
}

.hero-subtitle {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.chips-offer {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a30, #2a2a50);
    border: 1px solid #d4af37;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.chip-icon {
    background-color: #d4af37;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}

.offer-text {
    display: flex;
    flex-direction: column;
}

.offer-amount {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.offer-label {
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #d4af37, #f2d35b);
    color: #000;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-button i {
    margin-right: 10px;
    font-size: 18px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

/* Slots Animation */
.slots-animation {
    display: flex;
    gap: 5px;
}

.slot {
    width: 80px;
    height: 100px;
    background: linear-gradient(to bottom, #333, #111);
    border: 2px solid #d4af37;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.slot-window {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
    animation: slotSpin 2s ease-out forwards;
}

@keyframes slotSpin {
    0% { transform: translateY(-500px); }
    70% { transform: translateY(20px); }
    85% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.slot:nth-child(2) .slot-window {
    animation-delay: 0.2s;
}

.slot:nth-child(3) .slot-window {
    animation-delay: 0.4s;
}

/* Games Showcase */
/* Countdown and Progress Bar */
.countdown-container {
    margin-top: 20px;
    width: 100%;
}

.redirect-text {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 8px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #f2d35b);
    width: 0%;
    transition: width 0.1s linear;
}

/* Flash effect for countdown */
.flash {
    animation: flash-animation 0.3s;
}

@keyframes flash-animation {
    0% { color: #a0a0a0; }
    50% { color: #d4af37; }
    100% { color: #a0a0a0; }
}

/* Info Table Section */
.info-table-section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table {
    background: linear-gradient(135deg, #1a1a30, #2a2a50);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.table-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 15px;
}

.label {
    flex: 0 0 40%;
    background-color: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.value {
    flex: 0 0 60%;
    font-size: 14px;
}

.highlight-text {
    color: #d4af37;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 30px auto 0;
    color: #a0a0a0;
    font-size: 14px;
}

/* Registration Steps */
.registration-section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.step {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, #1a1a30, #2a2a50);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    background-color: #d4af37;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: #a0a0a0;
}

.highlight {
    color: #d4af37;
    font-weight: 600;
}

.tnc {
    font-size: 10px;
    opacity: 0.8;
    display: block;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        text-align: center;
        padding: 15px 3%;
    }
    
    .logo-container {
        align-items: center;
        margin-bottom: 10px;
    }
    
    .hero-section {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .slots-animation {
        margin-top: 20px;
    }
    
    .game-cards {
        flex-direction: column;
        gap: 15px;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .table-row {
        flex-direction: column;
    }
    
    .label, .value {
        flex: 1;
        width: 100%;
    }
    
    .floating-cta {
        width: 100%;
        left: 0;
        transform: none;
        border-radius: 0;
    }
}

/* Screenshots Section */
.screenshots-section {
    padding: 20px 0;
    background-color: #0d0d1a;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
}

.slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.slide {
    width: calc(25% - 20px);
    height: 400px;
    padding: 0;
    transition: transform 0.3s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #4a1a82;
    padding: 5px;
    box-sizing: border-box;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .slide {
        width: calc(50% - 15px);
        height: 300px;
    }
}

@media (max-width: 480px) {
    .screenshots-section {
        overflow: hidden;
    }
    
    .slider-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        width: 100%;
        scroll-behavior: smooth;
        padding: 0;
    }
    
    .slider-container::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }
    
    .slider {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        padding: 0;
    }
    
    .slide {
        min-width: 100vw;
        width: 100vw;
        height: 500px;
        padding: 0;
        scroll-snap-align: center;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .slide img {
        object-fit: contain;
        height: auto;
        width: 90%;
        max-height: 90%;
        padding: 5px;
        box-sizing: border-box;
        margin: 0 auto;
    }
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.game-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.game-card {
    flex: 1;
    background: linear-gradient(135deg, #1a1a30, #2a2a50);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.game-icon {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.win-rate {
    font-size: 14px;
    color: #a0a0a0;
}

.featured {
    border: 1px solid #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #d4af37;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 15px;
}

/* Testimonials */
.testimonials {
    display: flex;
    gap: 20px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial {
    flex: 1;
    background: linear-gradient(135deg, #1a1a30, #2a2a50);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 30px;
    color: #d4af37;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: #d4af37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 10px;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
}

/* VIP Benefits */
.vip-benefits {
    padding: 40px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit {
    background: linear-gradient(135deg, #1a1a30, #2a2a50);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.benefit i {
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 15px;
}

.benefit h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.benefit p {
    font-size: 14px;
    color: #a0a0a0;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.telegram-button {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #d4af37, #f2d35b);
    color: #000;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.telegram-button i {
    margin-right: 10px;
    font-size: 18px;
}

.telegram-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

/* Footer */
footer {
    background-color: rgba(10, 10, 20, 0.8);
    padding: 30px 0;
    border-top: 1px solid #d4af37;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #a0a0a0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-disclaimer {
    font-size: 12px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo-container {
        align-items: center;
    }
    
    .hero-section {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .slots-animation {
        justify-content: center;
    }
    
    .game-cards {
        flex-direction: column;
    }
    
    .testimonials {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}