/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --secondary-color: #d4af37;
    --accent-color: #1a472a;
    --text-dark: #2c2c2c;
    --text-light: #f5f5f5;
    --bg-light: #faf8f3;
    --bg-dark: #1a1a1a;
    --border-color: #e0d5c7;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b1a2e 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

.logo-area img {
    max-width: 180px;
    height: auto;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.2);
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8941f 100%);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212,175,55,0.6);
}

/* Breadcrumb */
.breadcrumb-nav {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--text-dark);
}

.breadcrumb-item:not(:last-child)::after {
    content: ' / ';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-block {
    background-color: #fff;
    padding: 50px 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Introduction Section */
.intro-content p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05rem;
}

/* Games Section */
.games-grid {
    display: grid;
    gap: 40px;
}

.game-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.game-image {
    border-radius: 10px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.game-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.game-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.game-link:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateX(5px);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

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

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Payment Section */
.payment-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.payment-image {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.payment-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.payment-highlight {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.payment-info h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-top: 25px;
    margin-bottom: 10px;
}

.payment-benefits,
.payment-list {
    list-style: none;
    margin: 15px 0;
}

.payment-benefits li,
.payment-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.payment-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.payment-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.payment-notice {
    background-color: #fff9e6;
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 25px;
    border-radius: 5px;
}

.payment-notice p {
    margin-bottom: 10px;
}

/* License Section */
.license-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.license-badge {
    text-align: center;
}

.license-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.license-info p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.license-details {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid var(--border-color);
}

.license-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Support Section */
.support-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.support-image {
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

.support-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.support-channel {
    padding: 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.support-channel h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.support-channel p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Responsible Gaming Section */
.responsible-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.responsible-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.responsible-tools,
.help-resources {
    list-style: none;
    margin: 20px 0;
}

.responsible-tools li,
.help-resources li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.responsible-tools li::before,
.help-resources li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.age-restriction {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 10px;
    margin: 30px 0;
    border: 2px solid #ff9800;
}

.age-badge {
    font-size: 3rem;
    margin-bottom: 10px;
}

.disclaimer-note {
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

/* FAQ Section */
.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-answer p {
    line-height: 1.7;
    color: #555;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.reviewer-location {
    font-size: 0.9rem;
    color: #999;
}

.review-rating {
    text-align: right;
}

.stars {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.rating-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.review-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.review-footer {
    text-align: right;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* App Section */
.app-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.app-image {
    text-align: center;
}

.app-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.app-info p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.app-features {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.app-features h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.app-features ul {
    list-style: none;
}

.app-features li {
    padding: 8px 0;
    font-size: 1rem;
    color: #555;
}

.app-download-buttons {
    margin: 30px 0;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b1a2e 100%);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(196,30,58,0.4);
    transition: all 0.3s ease;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(196,30,58,0.6);
}

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

.app-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2c2c2c 100%);
    color: var(--text-light);
    padding: 50px 0 30px;
}

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

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

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

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

.footer-links a:hover {
    color: var(--secondary-color);
}

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

.footer-payment {
    margin-bottom: 30px;
}

.payment-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-payment img {
    max-width: 400px;
    margin: 0 auto;
}

.footer-license {
    margin-bottom: 30px;
}

.footer-license img {
    max-width: 150px;
    margin: 0 auto 15px;
}

.footer-license p {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    margin-top: 30px;
}

.age-warning {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 15px;
}

.copyright,
.disclaimer,
.company-info {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}

/* Game Page Styles */
.game-showcase {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 15px;
}

.game-showcase img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.game-content {
    margin-top: 30px;
}

.game-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.game-content h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.game-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

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

.game-content li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.game-intro,
.game-rules,
.game-features,
.game-tips,
.game-rtp {
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.feature-detail {
    padding: 25px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.feature-detail h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.feature-detail p {
    color: #555;
    line-height: 1.7;
}

.play-now {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffe0b2 100%);
    border-radius: 15px;
    text-align: center;
}

.play-now h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.play-now p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-menu {
        justify-content: center;
        width: 100%;
        margin-top: 15px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .game-card {
        grid-template-columns: 1fr;
    }
    
    .license-content,
    .app-content {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 350px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .nav-link {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}
