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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 1px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo-icon {
    color: #d4af37;
    font-size: 2rem;
}

.logo-text {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #d4af37;
}

.btn-login {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #d4af37;
    color: #0a0a0a;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23000000" width="1200" height="600"/><g fill="%23d4af37" opacity="0.1"><circle cx="100" cy="100" r="50"/><circle cx="300" cy="200" r="70"/><circle cx="600" cy="150" r="60"/><circle cx="900" cy="300" r="80"/><circle cx="1100" cy="200" r="50"/><path d="M200 400 L250 450 L300 400 L350 450 L400 400"/><path d="M700 450 L750 500 L800 450 L850 500 L900 450"/></g></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

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

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #d4af37;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.badge-icon {
    font-size: 1.5rem;
}

/* Signup Section */
.signup-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
}

.signup-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1515 100%);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    text-align: center;
}

.signup-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.signup-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.signup-subtitle strong {
    color: #ffd700;
}

.signup-form {
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #d4af37;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.email-input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.email-input::placeholder {
    color: #888888;
}

.btn-signup {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border: none;
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-signup:active {
    transform: translateY(0);
}

.form-terms {
    font-size: 0.85rem;
    color: #888888;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: fadeIn 0.5s;
}

.success-icon {
    font-size: 1.5rem;
    color: #00ff00;
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

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

.game-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
    border: 1px solid #d4af37;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: #ffd700;
}

.game-image {
    height: 150px;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.game-image.slots::before {
    content: '🎰';
}

.game-image.blackjack::before {
    content: '🃏';
}

.game-image.roulette::before {
    content: '🎡';
}

.game-image.poker::before {
    content: '♠';
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.game-card p {
    color: #cccccc;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.feature-item p {
    color: #cccccc;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid #d4af37;
}

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

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #888888;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b6b;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .form-group {
        flex-direction: column;
    }

    .signup-card {
        padding: 2rem 1rem;
    }

    .signup-card h2 {
        font-size: 2rem;
    }
}
