* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 158, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand svg {
    transition: transform 0.3s ease;
}

.nav-brand:hover svg {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #4f9eff;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4f9eff, #ff6b35);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.btn-login {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #4f9eff;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-login:hover {
    background: #4f9eff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 158, 255, 0.3);
}

.btn-register {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    background: linear-gradient(135deg, #4f9eff 0%, #ff6b35 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(79, 158, 255, 0.3);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(79, 158, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.welcome-bonus {
    text-align: left;
}

.bonus-amount {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4f9eff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bonus-text {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #4f9eff 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.hero-character img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Winners Section */
.winners {
    background: #111111;
    padding: 80px 0;
    position: relative;
}

.winners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4f9eff, transparent);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    color: #ffffff;
}

.section-header svg {
    margin-right: 10px;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-header span {
    font-size: 1.5rem;
    font-weight: 700;
    flex-grow: 1;
    margin-left: 10px;
}

.show-all {
    color: #4f9eff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.show-all:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.winner-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 158, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 158, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.winner-card:hover::before {
    left: 100%;
}

.winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 158, 255, 0.2);
    border-color: rgba(79, 158, 255, 0.3);
}

.winner-card img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.winner-info {
    flex-grow: 1;
    color: #ffffff;
}

.game-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.win-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4f9eff;
    margin-bottom: 5px;
}

.player-name {
    font-size: 0.9rem;
    color: #999;
    opacity: 0.8;
}

/* Games Section */
.games-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4f9eff, #ff6b35);
    border-radius: 2px;
}

.games-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    color: #999;
    border: 2px solid #333;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.tab-btn.active,
.tab-btn:hover {
    color: #ffffff;
    border-color: #4f9eff;
    background: rgba(79, 158, 255, 0.1);
    transform: translateY(-2px);
}

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

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #1a1a2e;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 158, 255, 0.3);
}

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: linear-gradient(135deg, #4f9eff 0%, #ff6b35 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.game-card:hover .play-btn {
    transform: translateY(0);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(79, 158, 255, 0.4);
}

/* Promotions Section */
.promotions {
    background: linear-gradient(135deg, #111111 0%, #1a1a2e 100%);
    padding: 80px 0;
    position: relative;
}

.promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promo-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 158, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 158, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 158, 255, 0.2);
    border-color: rgba(79, 158, 255, 0.3);
}

.promo-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.promo-description {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.promo-btn {
    background: linear-gradient(135deg, #4f9eff 0%, #ff6b35 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(79, 158, 255, 0.4);
}

/* App Section */
.app-section {
    background: #0a0a0a;
    padding: 100px 0;
    position: relative;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-info {
    color: #ffffff;
}

.app-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.app-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ffffff;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(79, 158, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 158, 255, 0.3);
    border-color: rgba(79, 158, 255, 0.5);
}

.download-text {
    font-size: 0.9rem;
    color: #999;
}

.download-platform {
    font-size: 1.1rem;
    font-weight: 600;
}

.app-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-phone img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

/* Payments Section */
.payments {
    background: linear-gradient(135deg, #111111 0%, #1a1a2e 100%);
    padding: 80px 0;
}

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

.payment-category {
    text-align: center;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 40px;
    width: auto;
    filter: brightness(0.8);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.payment-icons img:hover {
    filter: brightness(1.2);
    transform: scale(1.1);
    background: rgba(79, 158, 255, 0.1);
}

/* SEO Content */
.seo-content {
    background: #0a0a0a;
    padding: 80px 0;
    color: #ffffff;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.seo-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, #4f9eff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #4f9eff;
    position: relative;
    padding-left: 20px;
}

.seo-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #4f9eff 0%, #ff6b35 100%);
    border-radius: 2px;
}

.seo-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #ff6b35;
}

.seo-content p {
    margin-bottom: 20px;
    color: #ccc;
    text-align: justify;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bonus-table th {
    background: linear-gradient(135deg, #4f9eff 0%, #ff6b35 100%);
    color: #ffffff;
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(79, 158, 255, 0.1);
    color: #ffffff;
}

.bonus-table tr:hover {
    background: rgba(79, 158, 255, 0.05);
}

.bonus-table tr:last-child td {
    border-bottom: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f1419 100%);
    padding: 60px 0 30px;
    color: #ffffff;
    border-top: 1px solid rgba(79, 158, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    color: #ccc;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4f9eff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4f9eff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f9eff 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(79, 158, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(79, 158, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.license-info {
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .bonus-amount {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
    
    .bonus-text {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .seo-content h1 {
        font-size: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
    
    .bonus-table {
        font-size: 0.9rem;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .winners {
        padding: 60px 0;
    }
    
    .games-section,
    .promotions,
    .app-section,
    .payments,
    .seo-content {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .promo-card {
        padding: 30px 20px;
    }
    
    .games-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Animations and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.winner-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.winner-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.winner-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.winner-card:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.game-card:nth-child(odd) {
    animation: fadeInLeft 0.6s ease 0.1s both;
}

.game-card:nth-child(even) {
    animation: fadeInRight 0.6s ease 0.1s both;
}

.promo-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.promo-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.promo-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.5s both;
}

/* Performance Optimizations */
.hero-content,
.games-grid,
.promo-grid,
.winners-grid,
.payment-methods {
    will-change: transform;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* High DPI Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }
}