/* Unicode Icons */
.fas {
    font-style: normal !important;
    font-weight: normal !important;
    transform: none !important;
}

.fa-gamepad:before { content: "🎮"; }
.fa-gift:before { content: "🎁"; }
.fa-trophy:before { content: "🏆"; }
.fa-star:before { content: "⭐"; }
.fa-chevron-down:before { content: "⌄"; }
.fa-list:before { content: "☰"; }

/* Specific icon styles to prevent any unwanted transformations */
.fa-gamepad, .fa-gift, .fa-trophy, .fa-star {
    font-style: normal !important;
    transform: none !important;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #DC143C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #8B0000;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
    font-weight: bold;
}

/* Mobile Breadcrumbs */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 10px 0;
    }
    
    .breadcrumb-list {
        font-size: 13px;
    }
    
    .breadcrumb-separator {
        margin: 0 8px;
    }
}

/* Privacy Policy Content */
.privacy-content {
    background: white;
    border-radius: 10px;
    margin: 20px 0;
    padding: 40px;
}

.privacy-content h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 14px;
}

.privacy-content h2 {
    font-size: 24px;
    color: #DC143C;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #DC143C;
    padding-bottom: 5px;
}

.privacy-content h3 {
    font-size: 18px;
    color: #333;
    margin: 20px 0 10px 0;
}

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

.privacy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}

.privacy-content strong {
    color: #333;
}

/* Mobile Privacy Content */
@media (max-width: 768px) {
    .privacy-content {
        padding: 20px;
        margin: 10px 0;
    }
    
    .privacy-content h1 {
        font-size: 24px;
    }
    
    .privacy-content h2 {
        font-size: 20px;
    }
    
    .privacy-content h3 {
        font-size: 16px;
    }
}

/* Contact Content */
.contact-content {
    background: white;
    border-radius: 10px;
    margin: 20px 0;
    padding: 40px;
}

.contact-content h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.contact-card h3 {
    color: #DC143C;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-form h2 {
    color: #DC143C;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC143C;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.btn-submit {
    background: #DC143C;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #8B0000;
    transform: translateY(-1px);
}

/* Mobile Contact Content */
@media (max-width: 768px) {
    .contact-content {
        padding: 20px;
        margin: 10px 0;
    }
    
    .contact-content h1 {
        font-size: 24px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* FAQ Section in Contact */
.faq-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.faq-section h2 {
    color: #DC143C;
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
}

.faq-section .faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #DC143C;
}

.faq-section .faq-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-section .faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Demo Game Section */
.demo-game {
    background: white;
    border-radius: 10px;
    margin: 20px 0;
    padding: 40px 0;
}

.demo-content {
    text-align: center;
}

.demo-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.demo-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-container {
    padding-top: 10px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.game-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
}

.demo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.game-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-demo {
    background: #28a745;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-demo:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-play-real {
    background: #FF6B35;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.game-iframe-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.iframe-controls {
    text-align: center;
    margin-top: 15px;
}

.btn-close {
    background: #6c757d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Mobile Demo Game */
@media (max-width: 768px) {
    .demo-content h2 {
        font-size: 24px;
    }
    
    .demo-content p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .game-placeholder {
        height: 300px;
    }
    
    .game-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .btn-demo, .btn-play-real {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .game-iframe-container {
        padding: 10px;
    }
    
    #gameIframe {
        height: 400px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
    width: 1200px;
    margin: 0 auto;
}

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

/* Header Styles */
.header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 5px 0;
}

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

.logo img {
    height: 70px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
}

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

/* Hide mobile play button in desktop menu */

.btn-play {
    background: #FF6B35;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-play:hover {
    background: #E55A2B;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background: white;
    border-radius: 10px;
    margin: 20px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.btn-play-hero {
    background: #FF6B35;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 15px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-play-hero:hover {
    background: #E55A2B;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.hero-info h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.game-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid #e0e0e0;
}

.spec-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item:first-child {
    border-top: none;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-icon {
    display: none;
}

.spec-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: #333;
}

/* TOC Section */
.toc {
    padding: 40px 0;
    background: white;
    border-radius: 10px;
    margin: 20px 0;
}

.toc h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.toc-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.toc-question {
    background: #f8f9fa;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toc-question:hover {
    background: #e9ecef;
}

.toc-question h3 {
    font-size: 16px;
    color: #333;
}

.toc-question .fa-chevron-down {
    transition: transform 0.3s ease;
}

.toc-item.active .toc-question .fa-chevron-down {
    transform: rotate(180deg);
}

.toc-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.toc-item.active .toc-answer {
    padding: 15px;
    max-height: 700px;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list li:last-child {
    margin-bottom: 0;
}

.toc-list li a {
    color: #DC143C;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.toc-list li a:hover {
    color: #8B0000;
    text-decoration: underline;
}

.toc-list li:last-child a {
    border-bottom: none;
}

/* Features Section */
.features {
    padding: 40px 0;
    background: white;
    border-radius: 10px;
    margin: 20px 0;
}

.features h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.feature-icon {
    font-size: 24px;
    color: #DC143C;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

/* Text Content Section */
.text-content {
    padding: 20px 0;
    background: white;
    border-radius: 10px;
    margin: 20px 0;
}
.text-content img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
}

.text-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px 0;
    line-height: 1.3;
}

.text-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #DC143C;
    margin: 25px 0 10px 0;
    line-height: 1.3;
}

.text-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.text-content ul, .text-content ol {
    margin: 15px 0 20px 0;
    padding-left: 30px;
}

.text-content ul li, .text-content ol li {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

.text-content ul li {
    list-style-type: disc;
}

.text-content ol li {
    list-style-type: decimal;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

table thead {
    background: #DC143C;
    color: white;
}

table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #666;
}

table tbody tr:hover {
    background: #f8f9fa;
}

table tbody tr:last-child td {
    border-bottom: none;
}

.play-button-center {
    text-align: center;
    margin: 30px 0;
}

/* Reviews Section */
.reviews {
    padding: 40px 0;
    background: white;
    border-radius: 10px;
    margin: 20px 0;
}

.reviews h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

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

.review-card {
    background: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.review-header {
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Avatar Styles */
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.avatar-m {
    background: #4ECDC4;
}

.avatar-a {
    background: #FF6B6B;
}

.avatar-l {
    background: #45B7D1;
}

.avatar-s {
    background: #9B59B6;
}

.avatar-r {
    background: #E67E22;
}

.avatar-e {
    background: #1ABC9C;
}

.reviewer-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700;
}

.review-card p {
    font-style: italic;
    line-height: 1.6;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 40px 0;
    background: white;
    border-radius: 10px;
    margin: 20px 0;
}

.faq h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.faq-list {
    width: 100%;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 16px;
    color: #333;
}

.faq-question .fa-chevron-down {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Author Section */
.author {
    padding: 40px 0;
    background: white;
    border-radius: 10px;
    margin: 20px 0;
}

.author-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
}

.author-image img {
    width: 100%;
    border-radius: 8px;
}

.author-name {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.author-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #666;
}

.author-info p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.content-update {
    margin-bottom: 20px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #DC143C;
}

.content-update p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.update-date {
    color: #DC143C;
    font-weight: 600;
}

.author-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 20px;
    color: #DC143C;
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
    color: #666;
}

/* Footer */
.footer {
    background: #f8f9fa;
    color: #333;
    padding: 30px 0 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 70px;
}

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

.footer-section h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #DC143C;
}

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

.disclaimer {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #666;
}

.copyright {
    font-size: 12px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1200px) {
    body {
        width: 100%;
    }
    
    .container {
        width: 100%;
        max-width: 1200px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid #e0e0e0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        color: #333;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image img {
        object-fit: contain;
        height: 250px;
    }
    
    .hero-info h1 {
        font-size: 24px;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-stats {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    table {
        overflow-x: auto;
        display: block;
    }
    .header-content .btn-play {
        display: none;
    }

}
