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

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

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

/* Header & Navigation */
.header {
    background-color: #1a1f2e;
    border-bottom: 1px solid #2a3441;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #4CAF50;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #45A049);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn::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.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-login {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #4CAF50;
}

.btn-login:hover {
    background-color: #4CAF50;
    color: #ffffff;
}

.btn-register {
    background: linear-gradient(135deg, #4CAF50, #45A049);
    color: #ffffff;
}

.btn-register:hover {
    background: linear-gradient(135deg, #45A049, #3e8e41);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-hero {
    background: linear-gradient(135deg, #4CAF50, #45A049);
    color: #ffffff;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 0;
}

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

.btn-play {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 12px;
}

/* Hero Section */
body {
    padding-top: 80px;
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1f2e 0%, #2a3441 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

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

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45A049);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 10px #FFD700; }
    to { text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 20px #FFD700, 0 0 30px #FFD700; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-cashback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    color: #FFD700;
    font-size: 18px;
    font-weight: 600;
}

.crown-icon {
    animation: rotate 3s linear infinite;
}

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

.hero-cashback-rate {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-top: 0.5rem;
}

.hero-right {
    position: relative;
    height: 500px;
}

.hero-characters {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-character-1,
.hero-character-2 {
    height: 400px;
    width: auto;
    object-fit: contain;
}

.hero-character-1 {
    animation: float 3s ease-in-out infinite;
}

.hero-character-2 {
    animation: float 3s ease-in-out infinite reverse;
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-coin,
.floating-chip {
    position: absolute;
    animation: bounce 2s infinite;
}

.coin-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.coin-2 {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.chip-1 {
    bottom: 40%;
    left: 10%;
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: rgba(26, 31, 46, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 0 12px 12px 0;
    padding: 1rem 0;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 8px;
}

.sidebar-item:hover,
.sidebar-item.active {
    background-color: #4CAF50;
    transform: translateX(5px);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #1a1f2e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #2a3441, #3a4551);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
}

.feature-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.feature-description {
    color: #cccccc;
    font-size: 1rem;
}

/* Games Section */
.games {
    padding: 4rem 0;
    background-color: #0f1419;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

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

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    aspect-ratio: 3/4;
}

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.game-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Payment Methods */
.payment-methods {
    padding: 4rem 0;
    background-color: #1a1f2e;
    text-align: center;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.payment-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.payment-logo:hover {
    filter: none;
    transform: scale(1.1);
}

/* SEO Content */
.seo-content {
    padding: 4rem 0;
    background-color: #0f1419;
}

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

.content-article h1 {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 2rem;
    text-align: center;
}

.content-article h2 {
    font-size: 2rem;
    color: #ffffff;
    margin: 3rem 0 1.5rem 0;
    border-left: 4px solid #4CAF50;
    padding-left: 1rem;
}

.content-article h3 {
    font-size: 1.5rem;
    color: #4CAF50;
    margin: 2rem 0 1rem 0;
}

.content-article p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    text-align: justify;
}

.content-article strong {
    color: #4CAF50;
}

.info-table {
    margin: 3rem 0;
    background: linear-gradient(135deg, #2a3441, #3a4551);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.info-table h3 {
    color: #4CAF50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
}

.info-table th,
.info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
    color: #ffffff;
}

.info-table th {
    background-color: rgba(76, 175, 80, 0.1);
    font-weight: 600;
    color: #4CAF50;
}

.info-table tr:hover {
    background-color: rgba(76, 175, 80, 0.05);
}

/* Footer */
.footer {
    background-color: #1a1f2e;
    padding: 3rem 0 1rem;
    border-top: 1px solid #2a3441;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4,
.footer-title {
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-payments {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-payments img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid #2a3441;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888888;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badges img {
    height: 40px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1f2e;
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #2a3441;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-buttons {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }

    .hero-right {
        height: 300px;
    }

    .hero-character-1,
    .hero-character-2 {
        height: 250px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-amount {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .sidebar {
        display: none;
    }

    .content-article h1 {
        font-size: 2rem;
    }

    .content-article h2 {
        font-size: 1.5rem;
    }

    .info-table {
        padding: 1rem;
        overflow-x: auto;
    }

    .info-table table {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-amount {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .features {
        padding: 2rem 0;
    }

    .games {
        padding: 2rem 0;
    }

    .payment-methods {
        padding: 2rem 0;
    }

    .seo-content {
        padding: 2rem 0;
    }
}