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

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #7c3aed 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(124, 58, 237, 0.3);
}

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

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #a855f7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: 2px solid #7c3aed;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #7c3aed;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: #7c3aed;
    padding: 0.5rem 1rem;
    border: 1px solid #7c3aed;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #7c3aed;
    color: #ffffff;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(124, 58, 237, 0.8));
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

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

.hero-description {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.payment-methods {
    margin-top: 3rem;
    text-align: center;
}

.payment-title {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-logos img {
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-logos img:hover {
    opacity: 1;
}

/* Games Showcase */
.games-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #111827, #1f2937);
}

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

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

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

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #1f2937;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

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

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.game-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.play-btn {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.05);
}

/* Live Casino */
.live-casino {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

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

.live-game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.live-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ef4444;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    animation: pulse 2s infinite;
}

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

/* Features */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

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

.feature-card {
    background: linear-gradient(135deg, #374151, #4b5563);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.5);
}

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

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-description {
    color: #d1d5db;
    line-height: 1.6;
}

/* SEO Content */
.seo-content {
    padding: 80px 0;
    background: #111827;
}

.content-article {
    background: #1f2937;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.content-article h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-article h2 {
    font-size: 2rem;
    color: #7c3aed;
    margin: 3rem 0 1.5rem;
    border-bottom: 2px solid #7c3aed;
    padding-bottom: 0.5rem;
}

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

.content-article p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.content-article strong {
    color: #fbbf24;
    font-weight: 600;
}

.games-table, .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #374151;
    border-radius: 10px;
    overflow: hidden;
}

.games-table caption, .comparison-table caption {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: #7c3aed;
    padding: 1rem;
    border-radius: 10px 10px 0 0;
}

.games-table th, .comparison-table th {
    background: #4b5563;
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.games-table td, .comparison-table td {
    padding: 1rem;
    color: #d1d5db;
    border-bottom: 1px solid #4b5563;
}

.games-table tbody tr:nth-child(even), .comparison-table tbody tr:nth-child(even) {
    background: #4b5563;
}

.games-table tbody tr:hover, .comparison-table tbody tr:hover {
    background: rgba(124, 58, 237, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #e5e7eb;
}

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

/* Footer */
.footer {
    background: #111827;
    padding: 50px 0 20px;
}

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

.footer-section {
    color: #d1d5db;
}

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

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

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

.footer-licenses {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-licenses img {
    height: 40px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .content-article {
        padding: 2rem 1rem;
    }
    
    .content-article h1 {
        font-size: 2rem;
    }
    
    .games-table, .comparison-table {
        font-size: 0.9rem;
    }
    
    .games-table th, .comparison-table th,
    .games-table td, .comparison-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .payment-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-logos img {
        height: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}