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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
}

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

.nav-brand svg {
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.5));
}

.nav-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.login-btn {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid #ff6b35;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?w=1920&h=1080') center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.welcome-text {
    color: #87ceeb;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.bonus-frame {
    background: linear-gradient(45deg, #4a4a6a, #6a6a8a);
    border: 3px solid #87ceeb;
    border-radius: 20px;
    padding: 20px 40px;
    margin: 0 auto 30px;
    display: inline-block;
    box-shadow: 0 0 30px rgba(135, 206, 235, 0.3);
    position: relative;
}

.bonus-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #87ceeb, #ff6b35);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bonus-percentage {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #ffaa44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.bonus-amount {
    margin-bottom: 40px;
}

.up-to {
    color: #87ceeb;
    font-size: 24px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #87ceeb;
    text-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}

.dracula-character {
    position: relative;
    margin: 40px 0;
}

.dracula-character img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cashback-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-weight: 600;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.quick-start {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 30px;
}

.register-btn {
    background: linear-gradient(45deg, #ff6b35, #ff4444);
    color: white;
    padding: 16px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.payment-methods img:hover {
    filter: brightness(1);
    transform: translateY(-2px);
}

.terms {
    color: #999;
    font-size: 14px;
    line-height: 1.5;
}

/* Sticky Categories */
.sticky-categories {
    position: sticky;
    top: 72px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.categories-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.category-item:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.category-item.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.2);
}

.category-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Popular Slots */
.popular-slots {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.flame-icon {
    margin-right: 15px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    flex: 1;
}

.navigation-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
}

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

.slot-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.slot-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
}

.slot-title {
    font-size: 18px;
    font-weight: 600;
}

/* Cosmic Reels */
.cosmic-reels {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cosmic-header {
    margin-bottom: 40px;
}

.cosmic-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cosmic-subtitle {
    font-size: 20px;
    color: #87ceeb;
    margin-bottom: 20px;
}

.test-link {
    color: #87ceeb;
    font-size: 16px;
    cursor: pointer;
    text-decoration: underline;
}

.bat-divider {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

/* Payment Methods */
.payment-methods-section {
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.payment-row, .provider-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.payment-row img, .provider-row img {
    height: 40px;
    width: auto;
    filter: brightness(0.7) contrast(1.2);
    transition: all 0.3s ease;
}

.payment-row img:hover, .provider-row img:hover {
    filter: brightness(1) contrast(1);
    transform: scale(1.1);
}

/* SEO Content */
.seo-content {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
}

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

.seo-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.seo-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #87ceeb;
    margin: 40px 0 20px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

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

.seo-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 20px;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.seo-content table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    text-align: left;
}

.seo-content table tr:first-child td {
    background: rgba(255, 107, 53, 0.2);
    font-weight: 600;
    color: #ff6b35;
}

.seo-content table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f1419 0%, #0a0a0a 100%);
    padding: 60px 20px 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.6;
    margin-top: 20px;
    font-size: 14px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

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

.footer-section ul li a:hover {
    color: #ff6b35;
}

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

.age-verification {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 14px;
}

.copyright {
    color: #999;
    font-size: 14px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #cccccc;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 10px;
    position: relative;
}

.nav-item:hover {
    color: #ff6b35;
}

.nav-item.active {
    color: #ff6b35;
}

.nav-item.active circle {
    fill: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }
    
    .bonus-percentage {
        font-size: 56px;
    }
    
    .amount {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cosmic-title {
        font-size: 32px;
    }
    
    .seo-content h1 {
        font-size: 32px;
    }
    
    .seo-content h2 {
        font-size: 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .categories-container {
        gap: 10px;
    }
    
    .category-item {
        padding: 8px;
    }
    
    .category-item span {
        font-size: 12px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .payment-methods {
        gap: 15px;
    }
    
    .payment-methods img {
        height: 32px;
    }
    
    .seo-content table {
        font-size: 12px;
    }
    
    .seo-content table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 15px;
    }
    
    .bonus-percentage {
        font-size: 48px;
    }
    
    .amount {
        font-size: 28px;
    }
    
    .register-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .popular-slots {
        padding: 40px 15px;
    }
    
    .cosmic-reels {
        padding: 40px 15px;
    }
    
    .seo-content {
        padding: 60px 15px;
    }
    
    .footer {
        padding: 40px 15px 100px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b35, #ff4444);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff4444, #ff6b35);
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }
.hero-content > *:nth-child(7) { animation-delay: 0.7s; }
.hero-content > *:nth-child(8) { animation-delay: 0.8s; }