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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a1a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(45, 45, 45, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo svg {
    height: 40px;
    width: auto;
}

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

.btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ccc;
    border: 2px solid #555;
}

.btn-secondary:hover {
    border-color: #4caf50;
    color: #4caf50;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 50%, #0f0f0f 100%), url('https://example.com/casino-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b35 0%, #f7931e 25%, #4caf50 50%, #2196f3 75%, #9c27b0 100%);
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.welcome-offer {
    flex: 1;
    max-width: 500px;
}

.offer-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.offer-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2px;
}

.offer-description {
    font-size: 16px;
    color: #ccc;
    margin: 15px 0 25px;
}

.btn-register {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
}

.welcome-bonus {
    flex: 1;
    text-align: center;
    position: relative;
}

.neon-sign {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #4caf50, #2196f3);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
    margin-bottom: 10px;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 20px rgba(76, 175, 80, 0.5), 0 0 30px rgba(76, 175, 80, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(76, 175, 80, 0.8), 0 0 40px rgba(76, 175, 80, 0.5), 0 0 50px rgba(76, 175, 80, 0.3);
    }
}

.bonus-text {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Terms Text */
.terms-text {
    background: rgba(40, 40, 40, 0.9);
    padding: 20px 0;
    border-top: 1px solid #555;
}

.terms-text p {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
    text-align: justify;
}

/* Search Section */
.search-section {
    background: #1a1a1a;
    padding: 30px 0;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #999;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #4caf50;
    background: rgba(255, 255, 255, 0.15);
}

.search-box input::placeholder {
    color: #999;
}

/* Sticky Navigation */
.sticky-nav {
    background: rgba(45, 45, 45, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 70px;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #555;
}

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

.nav-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.nav-section.active .nav-title {
    color: #4caf50;
}

.nav-more {
    color: #4caf50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-more:hover {
    color: #45a049;
}

/* Games Section */
.games-section {
    background: #1a1a1a;
    padding: 30px 0 60px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #2a2a2a;
    aspect-ratio: 16/9;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

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

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

/* Content Section */
.content-section {
    background: #1a1a1a;
    padding: 40px 0;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
    color: #e0e0e0;
}

.seo-content h1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.seo-content h2 {
    font-size: 24px;
    color: #4caf50;
    margin: 30px 0 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #4caf50;
}

.seo-content h3 {
    font-size: 20px;
    color: #f7931e;
    margin: 25px 0 15px;
}

.seo-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.seo-content ul, .seo-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.seo-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.seo-content th, .seo-content td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-content th {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

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

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 40px 0 100px;
    border-top: 1px solid #333;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo svg {
    height: 50px;
    width: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4caf50;
}

.footer-info {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-info p {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.footer-badges img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-badges img:hover {
    opacity: 1;
}

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

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    display: flex;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 5px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottom-nav-item.active {
    color: #4caf50;
}

.bottom-nav-item:hover {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.bottom-nav-item span {
    font-size: 11px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .offer-title {
        font-size: 24px;
    }

    .offer-subtitle {
        font-size: 20px;
    }

    .neon-sign {
        font-size: 36px;
    }

    .bonus-text {
        font-size: 28px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .seo-content h1 {
        font-size: 26px;
    }

    .seo-content h2 {
        font-size: 22px;
    }

    .seo-content h3 {
        font-size: 18px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .sticky-nav {
        top: 60px;
    }

    .header {
        padding: 10px 0;
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .seo-content table {
        font-size: 12px;
    }

    .seo-content th, .seo-content td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    .offer-title {
        font-size: 20px;
    }

    .offer-subtitle {
        font-size: 18px;
    }

    .neon-sign {
        font-size: 28px;
    }

    .bonus-text {
        font-size: 24px;
    }

    .seo-content {
        padding: 0 10px;
    }

    .footer-badges {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-buttons {
        gap: 5px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.game-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for interactive elements */
a, button, .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus {
    outline: 2px solid #4caf50;
    outline-offset: 2px;
}

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

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

::-webkit-scrollbar-thumb {
    background: #4caf50;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}