﻿:root {
    --accent: #bf00ff;
    --accent2: #7700cc;
}

.gp-hero {
    min-height: 72vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(191,0,255,.14), transparent 70%), radial-gradient(ellipse 40% 40% at 80% 80%, rgba(0,245,255,.06), transparent 60%);
}

    .gp-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255,255,255,.015) 50px), repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,255,255,.015) 50px);
        pointer-events: none;
    }

.gp-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 24px var(--accent));
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.gp-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 40px var(--accent);
    margin-bottom: 1rem;
}

.gp-hero-tags {
    display: flex;
    gap: .5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.htag {
    font-family: 'Orbitron', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 4px;
}

.htag-purple {
    background: rgba(191,0,255,.15);
    color: var(--neon-purple);
    border: 1px solid rgba(191,0,255,.35);
}

.htag-cyan {
    background: rgba(0,245,255,.1);
    color: var(--neon-cyan);
    border: 1px solid rgba(0,245,255,.3);
}

.htag-gold {
    background: rgba(255,170,0,.1);
    color: #ffaa00;
    border: 1px solid rgba(255,170,0,.3);
}

.gp-hero p {
    max-width: 580px;
    color: #8080a8;
    font-size: 1.1rem;
    margin: 0 auto 2.5rem;
}

.gp-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

    .gp-hero-btns .btn {
        min-width: 180px;
        text-align: center;
    }

/* STATS BAR */
.gp-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(191,0,255,.04);
}

.stat-item {
    flex: 1;
    min-width: 140px;
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 12px var(--accent);
    display: block;
}

.stat-label {
    font-size: .78rem;
    color: #555577;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    font-size: .58rem;
    font-weight: 700;
}

/* BODY SECTIONS */
.gp-body {
    max-width: 1060px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

    .gp-body h2 {
        font-family: 'Orbitron', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--accent);
        text-shadow: 0 0 10px var(--accent);
        margin-bottom: 1.25rem;
    }

.gp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 680px) {
    .gp-two-col {
        grid-template-columns: 1fr;
    }
}

.gp-body p {
    color: #7070a0;
    margin-bottom: 1rem;
    font-size: .97rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

    .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
        padding: .6rem 0;
        border-bottom: 1px solid rgba(255,255,255,.04);
        color: #8080aa;
        font-size: .95rem;
    }

        .feature-list li:last-child {
            border-bottom: none;
        }

    .feature-list .fi {
        color: var(--accent);
        font-size: 1rem;
        margin-top: .15rem;
        flex-shrink: 0;
    }

/* SCREENSHOT PLACEHOLDERS */
.screens-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (max-width: 600px) {
    .screens-grid {
        grid-template-columns: 1fr;
    }
}

.screen {
    border-radius: 8px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

    .screen::after {
        content: 'SCREENSHOT';
        position: absolute;
        bottom: .5rem;
        right: .75rem;
        font-family: 'Orbitron', sans-serif;
        font-size: .45rem;
        letter-spacing: 2px;
        color: rgba(255,255,255,.15);
    }

.s1 {
    background: linear-gradient(135deg, #0d0d2b, #240050);
}

.s2 {
    background: linear-gradient(135deg, #0a0020, #1a0040);
}

.s3 {
    background: linear-gradient(135deg, #12003a, #0a001a);
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
}

.review-stars {
    color: #ffaa00;
    margin-bottom: .5rem;
    letter-spacing: 2px;
}

.review-text {
    color: #7070a0;
    font-size: .9rem;
    font-style: italic;
    margin-bottom: .75rem;
}

.review-author {
    font-family: 'Orbitron', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #505070;
}

/* BACK LINK */
.gp-back {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #5050a0;
    text-decoration: none;
    transition: color .2s;
    margin-bottom: 2.5rem;
}

    .gp-back:hover {
        color: var(--neon-cyan);
    }

@media (max-width: 900px) {
    .gp-hero {
        padding: 4rem 2rem 3.5rem;
        min-height: 60vh;
    }

    .gp-icon {
        font-size: 4rem;
        margin-bottom: 1.25rem;
    }

    .gp-hero h1 {
        margin-bottom: .75rem;
    }

    .gp-hero p {
        font-size: 1.05rem;
        max-width: 480px;
        margin-bottom: 2rem;
    }

    .gp-stats {
        flex-direction: row;
    }

    .stat-item {
        min-width: 33%;
        flex: 1 1 33%;
    }
}

@media (max-width: 700px) {
    .gp-hero {
        padding: 3.5rem 1.5rem 3rem;
        min-height: auto;
    }

    .gp-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .gp-hero p {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .gp-hero-btns {
        flex-direction: column;
        align-items: center;
        gap: .75rem;
    }

        .gp-hero-btns .btn {
            width: 100%;
            max-width: 280px;
            text-align: center;
        }

    .gp-stats {
        flex-direction: column;
    }

    .stat-item {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex: 1 1 auto;
    }

        .stat-item:last-child {
            border-bottom: none;
        }

    .gp-body {
        padding: 2.5rem 1.25rem;
    }

    .gp-two-col {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .screens-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gp-hero {
        padding: 3rem 1.25rem 2.5rem;
    }

    .gp-icon {
        font-size: 3rem;
    }

    .gp-hero h1 {
        letter-spacing: 1px;
    }

    .gp-hero p {
        font-size: .95rem;
        padding: 0 .5rem;
        margin-bottom: 1.75rem;
    }

    .htag {
        font-size: .55rem;
        padding: .2rem .6rem;
    }

    .gp-body {
        padding: 2rem 1rem;
    }
}

/* ENHANCED STORY SECTION */
.story-section {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 4rem 2rem;
}

.story-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 10px var(--accent);
}

/* Story Content Items */
.story-item {
    margin-bottom: 4rem;
    position: relative;
}

.story-item:last-child {
    margin-bottom: 0;
}

/* Text Block Styling */
.story-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0,0,0,.3);
    border: 1px solid rgba(191,0,255,.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 0 30px rgba(191,0,255,.05);
    position: relative;
    overflow: hidden;
}

.story-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191,0,255,.5), transparent);
    animation: pulse-line 3s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.story-text p {
    color: #b0b0d0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: center;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* Image Layout Styles */
.story-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

/* Left Layout */
.story-layout.left {
    grid-template-columns: 1fr 1.5fr;
}

/* Right Layout */
.story-layout.right {
    grid-template-columns: 1.5fr 1fr;
}

/* Center Layout (full width) */
.story-layout.center {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 3rem auto;
}

/* Media Container */
.story-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.6), 0 0 30px rgba(191,0,255,.2);
    border: 1px solid rgba(191,0,255,.3);
}

.story-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(191,0,255,.1), transparent 50%, rgba(0,0,0,.2));
    pointer-events: none;
    z-index: 2;
}

/* Image Styling */
.story-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.story-media:hover .story-image {
    transform: scale(1.02);
}

/* GIF Styling */
.story-gif {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Container */
.story-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.story-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.video-overlay:hover {
    background: rgba(0,0,0,.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(191,0,255,.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 0 30px rgba(191,0,255,.6);
    transition: all 0.3s ease;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(191,0,255,.8);
}

.video-title {
    font-family: 'Orbitron', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: white;
    text-align: center;
    letter-spacing: 1px;
}

/* Story Content Text */
.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.story-content p {
    color: #9090b0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Special Effects */
.story-media.glitch {
    animation: glitch-effect 0.1s infinite;
}

@keyframes glitch-effect {
    0% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-1px); }
    80% { transform: translateX(1px); }
    100% { transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 900px) {
    .story-layout.left,
    .story-layout.right {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-section {
        padding: 3rem 1.5rem;
    }
    
    .story-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .story-text {
        padding: 1.5rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .story-content h3 {
        font-size: 1.1rem;
    }
    
    .story-content {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .story-section {
        padding: 2rem 1rem;
    }
    
    .story-title {
        font-size: 1.4rem;
    }
    
    .story-text p {
        font-size: .95rem;
        line-height: 1.6;
    }
    
    .story-item {
        margin-bottom: 2.5rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-title {
        font-size: .8rem;
    }
}
.game-logo-wolfsschanze-lite {
    display: inline-block;
    background-image: url('../../assets/logo_lite.png');
    background-position: center;
    background-size: cover;
    width: 256px;
    height: 128px;
    border-radius: 12px;
}