/* Global Styles */
:root {
    --primary-color: #8b0000;
    --secondary-color: #2c0735;
    --accent-color: #ff4757;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #f5f5f5;
    --gray-text: #b0b0b0;
    --border-color: #2a2a2a;
    --card-bg: #151515;
    --hover-color: #a00000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
}

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

.logo {
    font-family: 'Creepster', cursive;
    font-size: 2rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}

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

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--secondary-color) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(139, 0, 0, 0.03) 2px,
        rgba(139, 0, 0, 0.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 71, 87, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--gray-text);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Game Section */
.game-section {
    padding: 5rem 0;
    background: var(--darker-bg);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.game-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.game-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-info {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--border-color);
}

.game-info h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.game-info ul {
    list-style: none;
}

.game-info li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-text);
    line-height: 1.6;
}

.game-info li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 71, 87, 0.2);
}

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

.feature-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* Characters Preview */
.characters-preview {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

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

.character-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.character-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 71, 87, 0.2);
}

.character-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.character-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.character-trait {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.character-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.character-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.character-link:hover {
    color: var(--hover-color);
}

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

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--darker-bg);
}

.about-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content strong {
    color: var(--accent-color);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
}

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

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--border-color);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
    color: var(--gray-text);
}

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

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

.footer-section a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

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

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

    .game-container {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

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

    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Table Styles */
.guide-table {
    width: 100%;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
    border: 2px solid var(--border-color);
}

.guide-table th,
.guide-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.guide-table th {
    background: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
}

.guide-table td {
    color: var(--gray-text);
}

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

/* Badge Styles */
.difficulty-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.difficulty-easy {
    background: #2ecc71;
    color: white;
}

.difficulty-medium {
    background: #f39c12;
    color: white;
}

.difficulty-hard {
    background: #e74c3c;
    color: white;
}

.difficulty-expert {
    background: #9b59b6;
    color: white;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 71, 87, 0.1);
}

.faq-question h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-text);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto;
}

/* Character Detail Styles */
.character-details-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.character-detail-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.character-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.character-emoji-large {
    font-size: 5rem;
}

.character-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin: 0.5rem 0;
    font-style: italic;
}

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

.info-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.info-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card ul {
    list-style: none;
    color: var(--gray-text);
}

.info-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pro-tip {
    background: rgba(255, 71, 87, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 5px;
    color: var(--gray-text);
}

.pro-tip strong {
    color: var(--accent-color);
}

/* Tier List Styles */
.tier-list-section {
    padding: 5rem 0;
    background: var(--darker-bg);
}

.tier-container {
    max-width: 900px;
    margin: 3rem auto;
}

.tier-row {
    display: flex;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.tier-label {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
}

.tier-characters {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
}

.tier-char {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    color: var(--light-text);
}

.tier-char span {
    color: var(--accent-color);
}

.tier-s .tier-label {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
}

.tier-a .tier-label {
    background: linear-gradient(135deg, #ffa502, #ff6348);
}

.tier-b .tier-label {
    background: linear-gradient(135deg, #1e90ff, #3742fa);
}

.route-recommendations {
    margin-top: 4rem;
}

.route-recommendations h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.recommendation-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.recommendation-card h4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.recommendation-card p {
    color: var(--gray-text);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* FAQ Section Styles */
.faq-main-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.faq-category-title {
    font-size: 2rem;
    color: var(--accent-color);
    margin: 3rem 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.help-box {
    background: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.help-box h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.help-box ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.help-box li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.help-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Guide Styles */
.guide-overview-section {
    padding: 5rem 0;
    background: var(--darker-bg);
}

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

.overview-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.overview-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

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

.overview-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.guide-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.guide-section.alt-bg {
    background: var(--darker-bg);
}

.guide-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.guide-content h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.guide-content p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.guide-box {
    background: var(--card-bg);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.guide-box h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.guide-box ul {
    list-style: none;
}

.guide-box li {
    color: var(--gray-text);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.guide-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.guide-box code {
    background: rgba(0, 0, 0, 0.5);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-family: monospace;
    color: var(--accent-color);
}

.route-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.route-selection-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.route-selection-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.route-selection-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.route-trigger {
    background: rgba(255, 71, 87, 0.1);
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.item-table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

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

.ending-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.ending-card h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.ending-type {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.ending-type strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.ending-type.good strong {
    color: #2ecc71;
}

.ending-type.bad strong {
    color: #e74c3c;
}

.ending-type.secret strong {
    color: #9b59b6;
}

.ending-type ul {
    list-style: none;
}

.ending-type li {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.ending-type li::before {
    content: '→';
    position: absolute;
    left: 0;
}

.choices-list {
    max-width: 900px;
    margin: 2rem auto;
}

.choice-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.choice-moment {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.choice-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.choice-good,
.choice-bad {
    padding: 1rem;
    border-radius: 5px;
    font-size: 0.95rem;
}

.choice-good {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    color: var(--gray-text);
}

.choice-bad {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    color: var(--gray-text);
}

.playthrough-order {
    max-width: 800px;
    margin: 3rem auto;
}

.order-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.order-step:hover {
    border-color: var(--accent-color);
}

.order-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.order-content h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.order-content p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.achievement-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

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

.achievement-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.achievement-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.achievement-reward {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Download Page Styles */
.download-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

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

.download-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.download-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 71, 87, 0.3);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.download-card h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.platform-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.platform-badge.windows {
    background: #0078d4;
    color: white;
}

.platform-badge.mac {
    background: #000;
    color: white;
}

.platform-badge.linux {
    background: #fcc624;
    color: #000;
}

.platform-badge.android {
    background: #3ddc84;
    color: #000;
}

.platform-badge.web {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.download-info {
    text-align: left;
    margin-bottom: 2rem;
}

.download-size {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.requirements-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.requirements-list li {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.requirements-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.features-list {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.features-list p {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.features-list li {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.install-guide-link {
    display: block;
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.install-guide-link:hover {
    color: var(--hover-color);
}

.web-note {
    color: var(--gray-text);
    font-size: 0.85rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: var(--darker-bg);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
}

.comparison-card h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.comparison-subtitle {
    color: var(--gray-text);
    font-style: italic;
    margin-bottom: 2rem;
}

.pros-cons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pros h4 {
    color: #2ecc71;
    margin-bottom: 1rem;
}

.cons h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros li,
.cons li {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
}

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
}

/* Installation Section */
.installation-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.installation-guide {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.installation-guide h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-container {
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.step-number {
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.step-content h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-text);
    line-height: 1.6;
}

.troubleshooting {
    background: rgba(255, 71, 87, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 5px;
}

.troubleshooting h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.troubleshooting ul {
    list-style: none;
}

.troubleshooting li {
    color: var(--gray-text);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.android-note {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid orange;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.android-note p {
    color: var(--gray-text);
    margin: 0;
}

/* Requirements Section */
.requirements-section {
    padding: 5rem 0;
    background: var(--darker-bg);
}

.requirements-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.req-table h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Download FAQ Section */
.download-faq-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

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

.faq-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--accent-color);
}

.faq-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

