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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    line-height: 1.6;
}

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

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-logo svg {
    width: 40px;
    height: 40px;
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-secondary {
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 2px solid #555;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #66BB6A, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

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

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

.nav-categories {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(15, 52, 96, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav-categories.sticky {
    transform: translateY(0);
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://example.com/casino-background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.2);
    color: #FF6B35;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.text-green {
    color: #4CAF50;
}

.hero-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.dot.active {
    background: #4CAF50;
}

.hero-form {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.toggle-password {
    right: 1rem;
    left: auto;
    cursor: pointer;
    pointer-events: all;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.checkbox-group input {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
}

.checkbox-group label {
    line-height: 1.4;
}

.checkbox-group a {
    color: #4CAF50;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-bonus {
    position: relative;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-bonus:hover {
    background: linear-gradient(45deg, #66BB6A, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.btn-badge {
    background: #FF6B35;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.login-link {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.login-link a {
    color: #4CAF50;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.form-features {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.winners {
    background: #00BFFF;
    padding: 1rem 2rem;
}

.winners-header {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.7rem 1rem;
    border-radius: 8px;
}

.winner-info {
    display: flex;
    flex-direction: column;
}

.winner-name {
    font-weight: bold;
    font-size: 0.9rem;
}

.winner-game {
    font-size: 0.8rem;
    opacity: 0.8;
}

.winner-amount {
    font-weight: bold;
    color: #FFD700;
    font-size: 1.1rem;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    margin-top: 2rem;
}

.breadcrumb ol {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    list-style: none;
}

.breadcrumb li {
    position: relative;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: #4CAF50;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.seo-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.seo-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #4CAF50;
}

.seo-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #ffffff;
}

.seo-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

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

.seo-content table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
    word-wrap: break-word;
    max-width: 300px;
}

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

.seo-content table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.seo-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.seo-content li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.games-grid {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 0;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.games-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
}

.games-view-all {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.games-view-all:hover {
    text-decoration: underline;
}

.games-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

.game-info {
    padding: 1rem;
}

.game-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.game-provider {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.payment-methods {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.payment-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ffffff;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.payment-grid img {
    height: 40px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.payment-grid img:hover {
    filter: brightness(1);
    transform: scale(1.1);
}

.footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4CAF50;
}

.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-item img {
    height: 40px;
    object-fit: contain;
    filter: brightness(0.8);
}

.footer-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-providers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-providers img {
    height: 30px;
    object-fit: contain;
    filter: brightness(0.7);
}

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

.footer-bonus-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-bonus-btn:hover {
    background: linear-gradient(45deg, #66BB6A, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

@media (max-width: 768px) {
    .nav-auth {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .categories-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .category-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .games-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .payment-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-certifications,
    .footer-providers {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .seo-content h1 {
        font-size: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
    
    .seo-content table {
        font-size: 0.9rem;
    }
    
    .seo-content table td {
        padding: 0.7rem;
        max-width: 200px;
    }
}