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

body {
    font-family: 'Arial', sans-serif;
    background: #1a1a1a;
    color: #fff;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-bottom: 2px solid #FFD700;
    position: relative;
}

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

.menu-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: #FFD700;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: rgba(255, 215, 0, 0.1);
}

.logo svg {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.header-promo svg {
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
    animation: pulse 2s infinite;
}

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

.marquee {
    background: linear-gradient(90deg, #FFD700, #FF6B35, #FFD700);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    color: #000;
    font-weight: bold;
    font-size: 14px;
    animation: marquee 20s linear infinite;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Sticky Navigation */
.sticky-nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-nav.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-items {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

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

.nav-item:hover,
.nav-item.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

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

.nav-item span {
    font-size: 10px;
    font-weight: bold;
}

.notification-badge {
    position: absolute;
    top: 4px;
    right: 8px;
    background: #FF6B35;
    color: #fff;
    font-size: 8px;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 10px;
    min-width: 14px;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://example.com/casino-hero-bg.jpg') center/cover;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

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

.hero-left {
    flex: 1;
    max-width: 60%;
}

.hero-logo {
    margin-bottom: 20px;
}

.claim-text {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-amount {
    font-size: 48px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.free-today {
    font-size: 32px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
    max-width: 400px;
}

.hero-right {
    flex: 1;
    text-align: center;
}

.hero-character img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.cta-button {
    text-align: center;
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Partnership Section */
.partnership {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

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

.rating {
    color: #FFD700;
    font-weight: bold;
    font-size: 18px;
}

.partnership-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partnership-info img {
    height: 40px;
    width: auto;
}

.partnership-text {
    color: #ccc;
    font-size: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #ccc;
}

.trust-badge img {
    height: 30px;
    width: auto;
}

.recommended {
    background: #4CAF50;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.age-rating {
    background: #FF6B35;
    color: #fff;
    padding: 4px 8px;
    border-radius: 50%;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

/* Transactions Section */
.transactions {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 30px 0;
}

.section-title {
    color: #FFD700;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transaction-table {
    background: rgba(45, 45, 45, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #FFD700;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #FFD700;
    color: #000;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #333;
    padding: 12px 0;
}

.table-row:last-child {
    border-bottom: none;
}

.deposit-info,
.withdraw-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
}

.user-id {
    font-size: 12px;
    color: #999;
}

.amount {
    color: #FFD700;
    font-weight: bold;
    font-size: 14px;
}

.provider {
    font-size: 10px;
    color: #ccc;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
}

/* Games Banner */
.games-banner {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.games-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.games-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.games-logo {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.games-text {
    flex: 1;
    text-align: center;
    margin: 0 30px;
}

.games-title {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.games-cta {
    font-size: 20px;
    font-weight: bold;
    color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.2));
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid #FFD700;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.games-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.games-icons img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid #FFD700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.games-button {
    display: block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    margin: 0 auto;
    width: fit-content;
}

.games-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Game Categories */
.game-categories {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 30px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.category-item {
    text-align: center;
    padding: 20px;
    background: rgba(45, 45, 45, 0.5);
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    transform: translateY(-5px);
}

.category-item img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* SEO Content */
.seo-content {
    background: #1a1a1a;
    padding: 50px 0;
}

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

.content h1 {
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content h2 {
    color: #FFD700;
    font-size: 24px;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.content h3 {
    color: #FFA500;
    font-size: 20px;
    margin: 30px 0 15px 0;
}

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

.content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content li {
    color: #ccc;
    margin-bottom: 10px;
    position: relative;
}

.content li::marker {
    color: #FFD700;
}

.content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content ol li {
    color: #ccc;
    margin-bottom: 10px;
}

.content ol li::marker {
    color: #FFD700;
    font-weight: bold;
}

.content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: rgba(45, 45, 45, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #FFD700;
}

.content th {
    background: #FFD700;
    color: #000;
    padding: 15px;
    font-weight: bold;
    text-align: left;
}

.content td {
    padding: 12px 15px;
    border-bottom: 1px solid #333;
    color: #ccc;
}

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

.content tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 40px 0;
    text-align: center;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #333, #222);
    color: #FFD700;
    padding: 15px 40px;
    border: 2px solid #FFD700;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    padding: 40px 0 20px;
    border-top: 2px solid #FFD700;
    position: relative;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.footer-text p {
    color: #ccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
}

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

.license-section .section-title {
    color: #FFD700;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.license-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.license-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(50%) opacity(0.8);
    transition: all 0.3s ease;
}

.license-logos img:hover {
    filter: grayscale(0%) opacity(1);
}

.responsible-gaming {
    text-align: center;
    margin-bottom: 30px;
}

.responsible-gaming .section-title {
    margin-bottom: 20px;
}

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

.rg-logos img {
    height: 50px;
    width: auto;
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 12px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.floating-gift {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

.floating-gift img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.menu-content {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    height: 100%;
    width: 300px;
    padding: 20px;
    border-right: 2px solid #FFD700;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.menu-title {
    color: #FFD700;
    font-size: 20px;
    font-weight: bold;
}

.menu-close {
    color: #FFD700;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.menu-nav a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu-nav a:hover {
    color: #FFD700;
}

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

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

    .hero-left {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .bonus-amount {
        font-size: 36px;
    }

    .free-today {
        font-size: 24px;
    }

    .partnership-content {
        flex-direction: column;
        gap: 20px;
    }

    .games-content {
        flex-direction: column;
        gap: 20px;
    }

    .games-text {
        margin: 0;
    }

    .category-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .content h1 {
        font-size: 24px;
    }

    .content h2 {
        font-size: 20px;
    }

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

    .licenses {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .deposit-info,
    .withdraw-info {
        padding: 10px;
        border-bottom: 1px solid #333;
    }

    .withdraw-info {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .nav-item span {
        display: none;
    }

    .nav-item {
        padding: 8px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .games-title {
        font-size: 18px;
    }

    .games-cta {
        font-size: 16px;
        padding: 8px 16px;
    }

    .floating-gift {
        bottom: 10px;
        right: 10px;
    }

    .floating-gift img {
        width: 50px;
        height: 50px;
    }
}