@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Lato:wght@300;400;700&family=VT323&display=swap');

@font-face {
    font-family: 'AG Buch';
    src: url('AG Buch Condensed BQ Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #1a1a1a;
    --tertiary-color: #252525;
    --accent-color: #f3ca20;
    --accent-glow: rgba(243, 202, 32, 0.3);
    --danger-color: #8b0000;
    --danger-glow: rgba(139, 0, 0, 0.4);
    --text-color: #ffffff;
    --text-muted: #888888;
    --font-main: 'Lato', sans-serif;
    --font-title: 'Cormorant Garamond', serif;
    --font-mono: 'VT323', monospace;
    --font-game: 'AG Buch', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 12px;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

header nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

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

header nav ul li a:hover {
    color: var(--accent-color);
}

header nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
#presskit-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: 
        linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%),
        url('Photos/GameScreenShots/HallSc.PNG') center/cover no-repeat;
    padding: 100px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 0, 0, 0.1) 0%,
        transparent 50%,
        rgba(243, 202, 32, 0.05) 100%
    );
    pointer-events: none;
}

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

.badge {
    display: none;
}

.steam-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.hero-content h1 {
    font-family: var(--font-game);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 20px rgba(243, 202, 32, 0.3),
        0 0 40px rgba(243, 202, 32, 0.1);
    animation: titleGlitch 4s ease-in-out infinite;
}

@keyframes titleGlitch {
    0%, 92%, 100% { 
        transform: translate(0);
        text-shadow: 
            0 0 20px rgba(243, 202, 32, 0.3),
            0 0 40px rgba(243, 202, 32, 0.1);
    }
    93% { 
        transform: translate(-3px, 1px) skewX(0.5deg);
        text-shadow: 
            -3px 0 #ff0000,
            3px 0 #00ffff,
            0 0 20px rgba(243, 202, 32, 0.5);
    }
    94% { 
        transform: translate(2px, -1px) skewX(-0.5deg);
        text-shadow: 
            2px 0 #ff0000,
            -2px 0 #00ffff,
            0 0 20px rgba(243, 202, 32, 0.5);
    }
    95% { 
        transform: translate(-1px, 2px);
        text-shadow: 
            -2px 0 #ff0000,
            2px 0 #00ffff,
            0 0 20px rgba(243, 202, 32, 0.5);
    }
    96% { 
        transform: translate(0);
        text-shadow: 
            0 0 20px rgba(243, 202, 32, 0.3),
            0 0 40px rgba(243, 202, 32, 0.1);
    }
}

/* Background glitch effect - intermittent */
#presskit-hero {
    position: relative;
}

#presskit-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%),
        url('Photos/GameScreenShots/HallSc.PNG') center/cover no-repeat;
    animation: bgGlitch 6s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes bgGlitch {
    0%, 94%, 100% {
        transform: translate(0);
        filter: none;
    }
    95% {
        transform: translate(-4px, 0);
        filter: hue-rotate(5deg);
    }
    96% {
        transform: translate(4px, 0);
        filter: hue-rotate(-5deg);
    }
    97% {
        transform: translate(-2px, 1px);
        filter: saturate(1.2);
    }
    98% {
        transform: translate(0);
        filter: none;
    }
}

.tagline {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 24px;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(45deg);
    margin-top: 10px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Quick Facts */
#quick-facts {
    background: var(--secondary-color);
    padding: 60px 0;
}

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

.fact-card {
    background: var(--tertiary-color);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.fact-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.fact-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.fact-value {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--accent-color);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-dark {
    background: var(--primary-color);
}

.section-light {
    background: var(--secondary-color);
}

.section-features {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-decoration {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -40px;
    margin-bottom: 40px;
}

/* Pitch Section */
.pitch-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pitch-main {
    font-family: var(--font-title);
    font-size: clamp(1.3rem, 3vw, 2rem);
    line-height: 1.8;
    color: var(--text-muted);
}

.pitch-main .highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.pitch-main em {
    color: var(--text-color);
    font-style: italic;
}

/* Description Section */
.description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.description-text .highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.feature-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

/* Gameplay Section */
.gameplay-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gameplay-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.warning-box {
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid var(--danger-color);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.warning-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Features Section */
.feature-block {
    margin-bottom: 80px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-title {
    font-family: var(--font-title);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--accent-color);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    background: var(--tertiary-color);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent-color);
}

.feature-item h4 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

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

.feature-card {
    background: var(--tertiary-color);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card h4 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

/* Detection Section */
.detection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detection-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.paranoia-text {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-color) !important;
}

/* Screenshot Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.gallery-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--accent-color);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

/* Press Section */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.press-card {
    background: var(--tertiary-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.press-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.press-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.press-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.steam-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.steam-title-icon {
    width: 24px;
    height: 24px;
}

/* Team Section */
.team-info {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--tertiary-color);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.studio-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 30px var(--accent-glow);
}

.team-photo-container {
    text-align: center;
    margin-bottom: 50px;
}

.team-photo {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    border: 4px solid var(--accent-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.studio-details h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.studio-details p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.studio-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

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

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .description-grid,
    .detection-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-info {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

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

@media (max-width: 768px) {
    header nav ul {
        display: none;
    }

    .hero-content h1 {
        letter-spacing: 0.1em;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .warning-box {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }
}

/* Animation Delays for Cards */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }

.gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-item:nth-child(4) { transition-delay: 0.2s; }
.gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery-item:nth-child(6) { transition-delay: 0.3s; }
.gallery-item:nth-child(7) { transition-delay: 0.35s; }
.gallery-item:nth-child(8) { transition-delay: 0.4s; }
.gallery-item:nth-child(9) { transition-delay: 0.45s; }
.gallery-item:nth-child(10) { transition-delay: 0.5s; }
.gallery-item:nth-child(11) { transition-delay: 0.55s; }
.gallery-item:nth-child(12) { transition-delay: 0.6s; }

.fact-card:nth-child(1) { transition-delay: 0.1s; }
.fact-card:nth-child(2) { transition-delay: 0.2s; }
.fact-card:nth-child(3) { transition-delay: 0.3s; }
.fact-card:nth-child(4) { transition-delay: 0.4s; }

.press-card:nth-child(1) { transition-delay: 0.1s; }
.press-card:nth-child(2) { transition-delay: 0.2s; }
.press-card:nth-child(3) { transition-delay: 0.3s; }
