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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-signup {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(26, 35, 50, 0.8) 100%), url('https://images.unsplash.com/photo-1551650975-87deedd944c3?w=1200&h=600&fit=crop') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    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, 107, 53, 0.1) 0%, transparent 70%);
}

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.rating {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.rating-score {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
}

.rating-max {
    font-size: 16px;
    color: #ccc;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ff6b35 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 400px;
}

.btn-register {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #e74c3c 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border: none;
    cursor: pointer;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

/* Info Section */
.info-section {
    padding: 80px 20px;
    background: rgba(15, 20, 25, 0.8);
}

.info-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.info-icon {
    flex-shrink: 0;
}

.info-title {
    font-size: 14px;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-value {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

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

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

.content-article h1 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.content-article h2 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin: 40px 0 20px;
    border-left: 4px solid #ff6b35;
    padding-left: 20px;
}

.content-article h3 {
    font-size: 1.4rem;
    color: #1a2332;
    margin: 30px 0 15px;
    font-weight: 600;
}

.content-article p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #ff6b35;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 5px;
}

.author-title {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.author-date {
    color: #666;
    font-size: 12px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-table,
.games-table,
.payment-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.info-table thead,
.games-table thead,
.payment-table thead {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    color: #fff;
}

.info-table th,
.games-table th,
.payment-table th,
.info-table td,
.games-table td,
.payment-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.info-table tbody tr:nth-child(even),
.games-table tbody tr:nth-child(even),
.payment-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.info-table tbody tr:hover,
.games-table tbody tr:hover,
.payment-table tbody tr:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Footer */
.footer {
    background: #0f1419;
    color: #fff;
    padding: 50px 20px 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.license-info p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods img {
    height: 25px;
    border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-buttons {
        order: -1;
    }
    
    .hero {
        padding: 120px 20px 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .info-section .container {
        grid-template-columns: 1fr;
    }
    
    .content-article h1 {
        font-size: 2rem;
    }
    
    .content-article h2 {
        font-size: 1.5rem;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .table-container {
        font-size: 14px;
    }
    
    .info-table th,
    .games-table th,
    .payment-table th,
    .info-table td,
    .games-table td,
    .payment-table td {
        padding: 10px 5px;
    }
}