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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background Stripes */
.bg-stripes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.stripe {
    position: absolute;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 170, 0.1) 25%, 
        rgba(0, 255, 170, 0.3) 50%, 
        rgba(0, 255, 170, 0.1) 75%, 
        transparent 100%);
    opacity: 0.6;
    filter: blur(1px);
}

.stripe-1 {
    top: 15%;
    animation: slideStripe 25s linear infinite;
}

.stripe-2 {
    top: 35%;
    animation: slideStripe 30s linear infinite;
    animation-delay: -5s;
}

.stripe-3 {
    top: 55%;
    animation: slideStripe 28s linear infinite;
    animation-delay: -10s;
}

.stripe-4 {
    top: 75%;
    animation: slideStripe 32s linear infinite;
    animation-delay: -15s;
}

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

/* All sections need relative positioning to appear above stripes */
section, header, footer {
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff3333;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 36px;
    font-weight: 900;
    color: #ff3333;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn-login {
    background: transparent;
    border: 2px solid #ff3333;
    color: #ff3333;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #ff3333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.4);
}

.btn-register {
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.5);
}

/* Hero Section */
.hero {
    padding: 40px 0;
    position: relative;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.4);
}

.banner-casino {
    background: #1a0505;
}

.banner-sports {
    background: #051a1a;
}

.banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 1;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.banner-title {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3px;
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.9;
}

.banner-bonus {
    font-size: 56px;
    font-weight: 900;
    color: #ffcc00;
    text-shadow: 0 0 30px rgba(255, 204, 0, 0.6);
    margin-bottom: 20px;
    line-height: 1;
}

.btn-play {
    background: #ff3333;
    border: none;
    color: #ffffff;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.4);
}

.btn-play:hover {
    background: #cc0000;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 51, 51, 0.6);
}

/* Section Titles */
.section-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ff3333 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: rgba(255, 51, 51, 0.05);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    color: #cccccc;
}

.about-text strong {
    color: #ff3333;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(255, 51, 51, 0.05) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 51, 0.2);
}

.advantage-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.2) 0%, rgba(255, 51, 51, 0.1) 100%);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
}

.advantage-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff3333;
}

.advantage-text {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 51, 51, 0.3) 0%, rgba(0, 102, 102, 0.2) 100%);
}

.bonuses-subtitle {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #ffcc00;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(255, 51, 51, 0.05) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: scale(1.05);
    border-color: #ffcc00;
    box-shadow: 0 10px 40px rgba(255, 204, 0, 0.3);
}

.bonus-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.bonus-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.bonus-amount {
    font-size: 56px;
    font-weight: 900;
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
    margin-bottom: 15px;
}

.bonus-description {
    font-size: 16px;
    color: #cccccc;
}

.bonuses-regular {
    max-width: 700px;
    margin: 0 auto;
}

.bonuses-list {
    list-style: none;
    font-size: 18px;
    color: #cccccc;
}

.bonuses-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.bonuses-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffcc00;
    font-weight: 900;
    font-size: 20px;
}

/* Payments Section */
.payments {
    padding: 80px 0;
}

.payments-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    color: #cccccc;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.payment-item {
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.payment-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
}

.payment-logo {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.payment-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.payment-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.payment-label {
    font-size: 16px;
    color: #999999;
}

.payment-value {
    font-size: 22px;
    font-weight: 700;
    color: #ff3333;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: rgba(255, 51, 51, 0.05);
}

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

.game-category {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(51, 51, 51, 0.3) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-category:hover {
    transform: translateY(-10px);
    border-color: #ff3333;
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.3);
}

.game-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.game-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffcc00;
}

.game-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

/* License Section */
.license {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(51, 0, 0, 0.3) 0%, rgba(102, 0, 0, 0.2) 100%);
}

.license-content {
    max-width: 900px;
    margin: 0 auto;
}

.license-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #cccccc;
}

.license-text strong {
    color: #ff3333;
}

.license-info {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff3333;
    margin-top: 40px;
}

.license-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #cccccc;
}

.license-info strong {
    color: #ffcc00;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 60px 0 30px;
    border-top: 3px solid #ff3333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-size: 42px;
    font-weight: 900;
    color: #ff3333;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.footer-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff3333;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 16px;
    color: #999999;
    margin-bottom: 10px;
}

.footer-warning {
    font-size: 14px;
    color: #ff3333;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .banner {
        height: 250px;
    }
    
    .banner-content {
        width: 100%;
    }
    
    .banner-image {
        width: 50%;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-icons {
        gap: 20px;
    }
    
    .payment-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-bonus {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 28px;
    }
    
    .banner {
        height: 220px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-bonus {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 24px;
    }
}