/* About Page Specific Styles */
.about-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

/* Override game-container styles for about page */
.game-container.about-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

/* Content Layout */
.content-wrapper {
    display: flex;
    flex: 1;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
    background-color: transparent;
    max-width: 2000px;
    margin: 0 auto;
    overflow: hidden;
}

/* Text content */
.text-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 60px 30px 30px;
    position: relative;
    z-index: 1;
    background-color: transparent;
    max-width: 700px;
    height: 100%;
}

/* Logo Styling */
.game-logo {
    margin-bottom: 20px;
    text-align: left;
}

.title-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 64px;
    color: #FFB800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-family: 'Grenze Gotisch', serif;
}

.story-text {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #E0E0E0;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

.story-text p {
    margin-bottom: 20px;
}

.quote {
    font-family: 'Grenze Gotisch', serif;
    font-size: 32px;
    color: #FFB800;
    text-align: center;
    margin: 40px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
    letter-spacing: 1px;
}

/* Image Content */
.image-content {
    width: 55%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background-color: transparent;
    height: 100vh;
}

.character-image {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.5));
}

.action-links {
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-links .menu-item {
    font-size: 32px;
    padding: 12px 28px;
    background: rgba(26, 43, 60, 0.7);
    border: 1px solid rgba(255, 184, 0, 0.3);
    transition: all 0.3s ease;
    font-family: 'Grenze Gotisch', serif;
    letter-spacing: 1px;
    text-decoration: none;
    color: #FFB800;
}

.action-links .menu-item:hover {
    background: rgba(26, 43, 60, 0.5);
    border-color: rgba(255, 184, 0, 0.5);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

.action-links .menu-divider {
    width: 38px;
    height: auto;
    opacity: 0.8;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 32px;
    color: #FFB800;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
    padding: 10px 20px;
    z-index: 2;
}

.back-button:hover {
    color: #FFD700;
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

/* Version Number */
.about-page .version {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
    color: #FFB800;
    opacity: 0.8;
    font-family: 'Courier New', monospace;
    z-index: 10;
}

/* Responsive Design */
@media (min-width: 1401px) {
    .text-content {
        padding: 40px 30px 40px 60px;
    }

    .title-image {
        max-width: 450px;
    }

    .main-heading {
        font-size: 72px;
    }

    .story-text {
        font-size: 20px;
    }
}

@media (max-width: 1400px) {
    .text-content {
        padding: 30px 25px 30px 45px;
    }

    .main-heading {
        font-size: 56px;
    }

    .game-logo {
        margin-bottom: 25px;
    }

    .action-links .menu-item {
        font-size: 30px;
        padding: 12px 26px;
    }
}

@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        height: auto;
    }

    .text-content {
        width: 100%;
        padding: 30px;
        order: 1;
        height: auto;
    }

    .title-image {
        max-width: 50%;
        margin: 0 auto 30px;
    }

    .main-heading {
        font-size: 48px;
        text-align: center;
    }

    .game-logo {
        text-align: center;
    }

    .story-text {
        margin: 0 auto;
    }

    .image-content {
        width: 100%;
        height: 500px;
        order: 2;
    }

    .character-image {
        width: 100%;
        height: 100%;
        object-position: center;
    }

    .action-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .text-content {
        padding: 20px;
    }

    .title-image {
        max-width: 80%;
    }

    .main-heading {
        font-size: 42px;
    }

    .story-text {
        font-size: 16px;
    }

    .quote {
        font-size: 28px;
    }

    .action-links {
        flex-direction: column;
        gap: 20px;
    }

    .action-links .menu-divider {
        transform: rotate(90deg);
    }

    .action-links .menu-item {
        font-size: 30px;
        width: 100%;
        text-align: center;
    }

    .image-content {
        height: 350px;
    }

    .back-button {
        font-size: 24px;
    }
} 