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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #FF6B35;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #FF6B35;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #FF6B35;
    color: #fff;
}

.btn-register {
    background: #FF6B35;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-register:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://example.com/fortune-tiger-hero-background.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 25px;
}

.hero-text p {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35, #e55a2e);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #FF6B35;
    padding: 15px 35px;
    text-decoration: none;
    border: 2px solid #FF6B35;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #FF6B35;
    color: #fff;
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

/* Features Section */
.features {
    background: #111;
    padding: 80px 0;
}

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

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-title {
    font-size: 1.5rem;
    color: #FF6B35;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #FF6B35, #e55a2e);
    padding: 80px 0;
}

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

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Game Info Section */
.game-info {
    background: #111;
    padding: 80px 0;
}

.game-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
}

.game-info-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
    font-size: 1.1rem;
}

.game-info-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

/* Promotions Section */
.promotions {
    background: #0a0a0a;
    padding: 80px 0;
}

.promotions .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.promotion-item {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promotion-item:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.promotion-badge {
    background: #FF6B35;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.promotion-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.promotion-value {
    font-size: 2rem;
    color: #FF6B35;
    font-weight: bold;
    margin-bottom: 20px;
}

.promotion-item p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-promotion {
    background: #FF6B35;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-promotion:hover {
    background: #e55a2e;
    transform: translateY(-2px);
}

/* Content Section */
.content-section {
    background: #111;
    padding: 80px 0;
}

.main-content {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.main-content h1 {
    color: #FF6B35;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.main-content h2 {
    color: #fff;
    font-size: 2rem;
    margin: 40px 0 20px;
    border-bottom: 2px solid #FF6B35;
    padding-bottom: 10px;
}

.main-content h3 {
    color: #FF6B35;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.main-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.main-content strong {
    color: #FF6B35;
    font-weight: bold;
}

.main-content ul, .main-content ol {
    color: #ccc;
    margin: 20px 0;
    padding-left: 30px;
}

.main-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Tables */
.info-table, .symbols-table, .platforms-table, .registration-table, .bonus-table, .payment-table, .faq-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
}

.info-table th, .symbols-table th, .platforms-table th, .registration-table th, .bonus-table th, .payment-table th, .faq-table th {
    background: #FF6B35;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.info-table td, .symbols-table td, .platforms-table td, .registration-table td, .bonus-table td, .payment-table td, .faq-table td {
    padding: 15px;
    border-bottom: 1px solid #333;
    color: #ccc;
}

.info-table tr:hover, .symbols-table tr:hover, .platforms-table tr:hover, .registration-table tr:hover, .bonus-table tr:hover, .payment-table tr:hover, .faq-table tr:hover {
    background: #2a2a2a;
}

/* Author Info */
.author-info {
    margin-top: 60px;
}

.author-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #FF6B35;
    display: flex;
    gap: 25px;
    align-items: center;
}

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

.author-name {
    color: #FF6B35;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.author-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.author-details p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-date {
    color: #999;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

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

.footer-title {
    color: #FF6B35;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #ccc;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FF6B35;
}

.license-info {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.license-info p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

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

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

    .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .game-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .main-content {
        padding: 30px 20px;
    }

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

    .main-content h2 {
        font-size: 1.7rem;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-table, .symbols-table, .platforms-table, .registration-table, .bonus-table, .payment-table, .faq-table {
        font-size: 0.9rem;
    }

    .info-table th, .symbols-table th, .platforms-table th, .registration-table th, .bonus-table th, .payment-table th, .faq-table th,
    .info-table td, .symbols-table td, .platforms-table td, .registration-table td, .bonus-table td, .payment-table td, .faq-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .stat-number {
        font-size: 2.5rem;
    }

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

    .main-content h1 {
        font-size: 1.8rem;
    }

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

    .main-content h3 {
        font-size: 1.3rem;
    }

    .info-table, .symbols-table, .platforms-table, .registration-table, .bonus-table, .payment-table, .faq-table {
        font-size: 0.8rem;
    }
}