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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    background-image: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
    color: #ffd700;
}

h3 {
    font-size: 1.5rem;
    color: #fff;
}

p {
    margin-bottom: 1rem;
    color: #e0e0e0;
    line-height: 1.8;
}

a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
    border-bottom: 2px solid #ffd700;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-area img {
    border-radius: 50%;
    border: 3px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.site-name {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.header-cta .btn-primary {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
}

.header-cta .btn-primary:hover {
    background: linear-gradient(45deg, #b91c1c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
    text-decoration: none;
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(26, 26, 46, 0.8);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.breadcrumb a {
    color: #ffd700;
}

.breadcrumb span {
    color: #fff;
}

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

.hero-banner {
    position: relative;
    height: 60vh;
    min-height: 500px;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 46, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.btn-hero {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    text-decoration: none;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 3px solid #ffd700;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Video Section */
.video-intro-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.video-description {
    color: #e0e0e0;
    line-height: 1.8;
}

/* Promotion Section */
.promotion-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.promotion-card {
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffd700;
}

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

.promotion-content {
    padding: 2rem;
}

.promotion-title {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.promotion-features {
    list-style: none;
    margin: 1.5rem 0;
}

.promotion-features li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.promotion-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.btn-promotion {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-promotion:hover {
    background: linear-gradient(45deg, #b91c1c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
    text-decoration: none;
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

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

.game-card {
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: #ffd700;
}

.game-image {
    position: relative;
    overflow: hidden;
}

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

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

.game-info {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.game-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-game {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-game:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    text-decoration: none;
}

/* Tournament Section */
.tournament-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.tournament-grid {
    display: grid;
    gap: 3rem;
}

.tournament-card {
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.tournament-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

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

.tournament-info {
    padding: 2rem;
}

.tournament-title {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.tournament-description {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tournament-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.tournament-date,
.tournament-prize {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Articles Section */
.articles-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

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

.article-card {
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-category {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-date {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.article-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-excerpt {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-link {
    color: #ffd700;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: #ffed4e;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

/* Payment Section */
.payment-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

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

.payment-card {
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.payment-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
}

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

.payment-features {
    list-style: none;
    text-align: left;
}

.payment-features li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.payment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: rgba(45, 45, 74, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.payment-table th,
.payment-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.payment-table th {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: 600;
}

.payment-table td {
    color: #e0e0e0;
}

/* License Section */
.license-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.license-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.license-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.license-info h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.license-details {
    background: rgba(45, 45, 74, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border-left: 4px solid #ffd700;
}

.license-details p {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

/* Support Section */
.support-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

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

.support-card {
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

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

.support-title {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.support-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.support-contact {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-support {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-support:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-question {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-answer {
    padding: 1.5rem;
    color: #e0e0e0;
    line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

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

.review-card {
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-name {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
}

.reviewer-meta {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.review-rating .stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-content {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-date {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.responsible-content {
    max-width: 1000px;
    margin: 0 auto;
}

.responsible-content h3 {
    color: #ffd700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.responsible-list {
    list-style: none;
    margin: 1rem 0;
}

.responsible-list li {
    color: #e0e0e0;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.responsible-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.age-restriction {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    border: 2px solid #ffd700;
}

.age-badge {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.age-restriction p:last-child {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 3rem 0 1rem;
    border-top: 3px solid #ffd700;
    margin-top: 3rem;
}

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

.footer-title {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-license {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-license img {
    border-radius: 10px;
}

.footer-social h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.social-links a:hover {
    color: #ffd700;
}

.footer-contact h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.footer-legal p {
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-disclaimer {
    color: #dc2626 !important;
    font-weight: 600;
}

.payment-icons img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
}

.payment-text {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Game Detail Styles */
.game-detail-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

.game-images {
    margin-bottom: 3rem;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

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

.image-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-content h2 {
    color: #ffd700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.game-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-large:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    text-decoration: none;
}

/* App Download Styles */
.app-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 3px solid #ffd700;
}

.app-download-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

.app-banner {
    text-align: center;
    margin-bottom: 4rem;
}

.app-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.download-card {
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.download-icon {
    margin-bottom: 1rem;
}

.download-title {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.download-description {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.download-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.download-features li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.download-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.btn-download {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-download:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    text-decoration: none;
}

.ios-btn {
    background: linear-gradient(45deg, #007AFF, #5AC8FA);
    color: #fff;
}

.ios-btn:hover {
    background: linear-gradient(45deg, #0056CC, #007AFF);
}

.android-btn {
    background: linear-gradient(45deg, #3DDC84, #4CAF50);
    color: #fff;
}

.android-btn:hover {
    background: linear-gradient(45deg, #00C853, #3DDC84);
}

.qr-code-section {
    text-align: center;
    margin-bottom: 4rem;
}

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

.qr-card {
    text-align: center;
}

.qr-placeholder {
    background: #f0f0f0;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.qr-label {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
}

.app-features-section {
    margin-bottom: 4rem;
}

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

.feature-item {
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

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

.feature-title {
    color: #ffd700;
    margin-bottom: 1rem;
}

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

.installation-guide {
    margin-bottom: 4rem;
}

.guide-section {
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.guide-title {
    color: #ffd700;
    margin-bottom: 1rem;
}

.guide-steps {
    color: #e0e0e0;
    line-height: 1.8;
    padding-left: 1.5rem;
}

.guide-steps li {
    margin-bottom: 0.5rem;
}

.guide-note {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #dc2626;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    color: #fca5a5;
}

.app-screenshots {
    margin-bottom: 4rem;
}

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

.screenshots-grid img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.screenshots-grid img:hover {
    transform: scale(1.05);
}

.app-faq {
    margin-bottom: 4rem;
}

.app-cta {
    text-align: center;
    background: linear-gradient(135deg, #2d2d4a 0%, #3a3a5c 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid #ffd700;
}

.app-cta h2 {
    margin-bottom: 1rem;
}

.app-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .video-container {
        grid-template-columns: 1fr;
    }
    
    .license-content {
        grid-template-columns: 1fr;
    }
    
    .tournament-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-license {
        flex-direction: column;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .download-options {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .qr-codes {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card,
.article-card,
.review-card,
.tournament-card,
.support-card,
.payment-card,
.download-card,
.feature-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .btn-primary,
    .btn-hero,
    .btn-game,
    .btn-promotion,
    .btn-support,
    .btn-download,
    .btn-large {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
