/* DEWAZMA Horror Game Portal - Dark Atmospheric Styles */

/* CSS Variables for consistent theming */
:root {
    --primary-dark: #000000;
    --secondary-dark: #0a0a0a;
    --accent-red: #ff0000;
    --blood-red: #cc0000;
    --ghost-white: #ffffff;
    --dim-white: #e0e0e0;
    --shadow-gray: #1a1a1a;
    --transition-speed: 0.3s;
    --glow-effect: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Metal+Mania&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--primary-dark);
    color: var(--ghost-white);
    line-height: 1.5;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-weight: 400;
}

.section-title {
    font-family: 'Metal Mania', cursive;
    color: var(--accent-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blood-red);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

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

.horror-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--shadow-gray);
    border-top: 3px solid var(--accent-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    color: var(--ghost-white);
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Navigation */
.horror-nav {
    background: rgba(13, 13, 13, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
    padding: 1rem 0;
    border-bottom: 1px solid var(--accent-red);
}

.horror-brand {
    color: var(--ghost-white) !important;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
    transition: all var(--transition-speed) ease;
}

.horror-brand:hover .navbar-logo {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--ghost-white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--blood-red) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.home-btn {
    background: var(--accent-red) !important;
    border-radius: 25px !important;
    padding: 8px 20px !important;
    margin-left: 15px !important;
}

.home-btn:hover {
    background: var(--blood-red) !important;
    box-shadow: var(--glow-effect);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, #000 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="%23000"/><circle cx="20" cy="20" r="1" fill="%23333" opacity="0.5"/><circle cx="80" cy="40" r="1" fill="%23333" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="%23333" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.125;
    animation: grain 20s linear infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 10%); }
    80% { transform: translate(-15%, 0%); }
    90% { transform: translate(10%, 5%); }
}

.horror-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(3px 3px at 20px 30px, var(--accent-red), transparent),
                radial-gradient(3px 3px at 40px 70px, var(--blood-red), transparent),
                radial-gradient(2px 2px at 90px 40px, var(--ghost-white), transparent),
                radial-gradient(2px 2px at 130px 80px, var(--accent-red), transparent),
                radial-gradient(1px 1px at 60px 20px, var(--accent-red), transparent),
                radial-gradient(2px 2px at 110px 60px, var(--blood-red), transparent);
    background-size: 250px 120px;
    animation: float 12s infinite linear;
    opacity: 0.6;
}

@keyframes float {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--ghost-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    font-family: 'Metal Mania', serif;
}

.glitch-effect {
    position: relative;
    animation: glitch 3s infinite;
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-effect::before {
    animation: glitch-1 0.5s infinite;
    color: var(--accent-red);
    z-index: -1;
}

.glitch-effect::after {
    animation: glitch-2 0.5s infinite;
    color: var(--blood-red);
    z-index: -2;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 90%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, -2px); }
    20% { transform: translate(2px, 2px); }
    30% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 90%, 100% { transform: translate(0); }
    15% { transform: translate(2px, -2px); }
    25% { transform: translate(-2px, 2px); }
    35% { transform: translate(2px, 2px); }
    45% { transform: translate(-2px, -2px); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-red);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    line-height: 1.8;
}

.hero-badges {
    margin-bottom: 2rem;
}

.horror-badge {
    background: var(--accent-red) !important;
    color: var(--ghost-white) !important;
    padding: 8px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: inline-block;
    transition: all var(--transition-speed) ease;
}

.horror-badge:hover {
    background: var(--blood-red) !important;
    transform: translateY(-2px);
    box-shadow: var(--glow-effect);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.horror-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    background: var(--accent-red);
    color: var(--ghost-white);
}

.horror-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.horror-btn:hover::before {
    left: 100%;
}

.horror-btn:hover {
    background: var(--blood-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
    color: var(--ghost-white);
}

.horror-btn-outline {
    background: transparent;
    border: 2px solid var(--ghost-white);
    color: var(--ghost-white);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.horror-btn-outline:hover {
    background: var(--ghost-white);
    color: var(--primary-dark);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.horror-btn-outline:focus,
.horror-btn-outline:active {
    color: var(--primary-dark);
    text-decoration: none;
}

.pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 0, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(139, 0, 0, 0.8); }
}

/* Fade-in animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Game Logo */
.game-logo-container {
    position: relative;
    text-align: center;
    margin: 2rem auto;
    max-width: 400px;
}

.game-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(139, 0, 0, 0.5));
    transition: all var(--transition-speed) ease;
}

.game-logo:hover {
    filter: drop-shadow(0 0 30px rgba(139, 0, 0, 0.8));
    transform: scale(1.02);
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--ghost-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    position: relative;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
}

.section-title i {
    color: var(--accent-red);
    margin-right: 15px;
}

/* Trailer Section */
.trailer-section {
    padding: 60px 0;
    background: var(--secondary-dark);
    position: relative;
}

.trailer-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--accent-red);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: var(--primary-dark);
    position: relative;
    z-index: 1;
}

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

.short-description .lead {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--accent-red);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.full-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #cccccc;
}

.game-info {
    margin-top: 3rem;
}

.info-card {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid var(--shadow-gray);
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.info-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

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

.info-card h4 i {
    margin-right: 10px;
}

.info-card p {
    color: var(--ghost-white);
    font-size: 1.1rem;
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: var(--secondary-dark);
}

.gallery-item {
    margin-bottom: 2rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all var(--transition-speed) ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.4);
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--shadow-gray), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ghost-white);
    font-size: 1.1rem;
    border: 2px solid var(--accent-red);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

.gallery-placeholder.concept-art-1 {
    background-image: url('../assets/images/concept1.png');
    background-size: cover;
    background-position: center;
}

.gallery-placeholder.concept-art-2 {
    background-image: url('../assets/images/concept2.png');
    background-size: cover;
    background-position: center;
}

.gallery-placeholder.concept-art-3 {
    background-image: url('../assets/images/poster.jpg');
    background-size: cover;
    background-position: center;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.gallery-placeholder:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--ghost-white);
}

.gallery-overlay p {
    color: var(--ghost-white);
    font-weight: bold;
    margin: 0;
}

/* Languages Section */
.languages-section {
    padding: 60px 0;
    background: var(--primary-dark);
}

.horror-table {
    background: var(--secondary-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-red);
}

.horror-table th {
    background: var(--accent-red);
    color: var(--ghost-white);
    font-weight: bold;
    padding: 1.2rem;
    border: none;
    text-align: center;
}

.horror-table td {
    padding: 1rem 1.2rem;
    border: none;
    color: var(--ghost-white);
    text-align: center;
    border-bottom: 1px solid var(--shadow-gray);
}

.horror-table tbody tr:hover {
    background: rgba(139, 0, 0, 0.1);
}

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

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: var(--secondary-dark);
}

.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.review-card {
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-red);
    margin: 0 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.review-card.glitch-transition {
    animation: reviewGlitch 0.3s ease-in-out;
}

@keyframes reviewGlitch {
    0%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(90deg);
    }
    20% {
        transform: translate(-2px, -2px);
        filter: hue-rotate(180deg);
    }
    30% {
        transform: translate(2px, 2px);
        filter: hue-rotate(270deg);
    }
    40% {
        transform: translate(2px, -2px);
        filter: hue-rotate(360deg);
    }
    50% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(90deg) saturate(2);
    }
    60% {
        transform: translate(-2px, -2px);
        filter: hue-rotate(180deg) saturate(0.5);
    }
    70% {
        transform: translate(2px, 2px);
        filter: hue-rotate(270deg) saturate(2);
    }
    80% {
        transform: translate(2px, -2px);
        filter: hue-rotate(360deg) saturate(0.5);
    }
    90% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(45deg);
    }
}

.review-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--ghost-white);
    line-height: 1.6;
}

.reviewer-info strong {
    color: var(--accent-red);
    font-size: 1.1rem;
}

.slider-controls {
    text-align: center;
    margin-top: 2rem;
}

.slider-btn {
    background: var(--accent-red);
    border: none;
    color: var(--ghost-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-btn:hover {
    background: var(--blood-red);
    transform: scale(1.1);
    box-shadow: var(--glow-effect);
}

/* Download Section */
.download-section {
    padding: 60px 0;
    background: var(--primary-dark);
}

.download-options {
    margin-top: 2rem;
}

.download-card {
    background: var(--secondary-dark);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--shadow-gray);
    transition: all var(--transition-speed) ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.download-card.free-demo:hover {
    border-color: var(--accent-red);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.3);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-red);
}

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

.download-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--ghost-white);
}

.feature-list i {
    color: var(--accent-red);
    margin-right: 10px;
    width: 20px;
}

.download-card.free-demo .feature-list i {
    color: var(--accent-red);
}

.download-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border: 2px solid var(--accent-red);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-speed) ease;
    margin-top: auto;
    background: var(--accent-red);
    color: var(--ghost-white);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transform: skew(-5deg);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    background: var(--blood-red);
    border-color: var(--blood-red);
    transform: skew(-5deg) translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--ghost-white);
}

.price-input-container {
    margin-bottom: 2rem;
    text-align: left;
}

.price-input-container label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--ghost-white);
    font-weight: bold;
}

.price-input {
    background: var(--primary-dark) !important;
    border: 2px solid var(--shadow-gray) !important;
    color: var(--ghost-white) !important;
    padding: 12px !important;
    border-radius: 10px !important;
    font-size: 1.1rem !important;
    transition: all var(--transition-speed) ease !important;
}

.price-input:focus {
    border-color: var(--accent-red) !important;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3) !important;
    outline: none !important;
}

/* Payment Modal */
.horror-modal .modal-content {
    background: var(--primary-dark);
    border: 2px solid var(--accent-red);
    border-radius: 15px;
    color: var(--ghost-white);
}

.horror-modal .modal-header {
    border-bottom: 1px solid var(--accent-red);
    background: var(--primary-dark);
}

.horror-modal .modal-body {
    background: var(--primary-dark);
}

.horror-modal .modal-title {
    color: var(--ghost-white);
}

.modal-backdrop {
    z-index: 1040 !important;
}

.horror-modal {
    z-index: 1050 !important;
}

.modal-backdrop.show {
    opacity: 0.5;
}

body.modal-open {
    overflow: auto !important;
    padding-right: 0 !important;
}

.horror-modal .btn-close-white {
    filter: invert(1);
    opacity: 0.8;
}

.horror-modal .btn-close-white:hover {
    opacity: 1;
}

.payment-info {
    text-align: center;
    padding: 2rem;
}

.payment-qr {
    max-width: 200px;
    margin: 2rem auto;
    border: none;
    border-radius: 15px;
    background: white;
    padding: 10px;
}

.payment-links {
    margin-top: 2rem;
}

.payment-links .row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.payment-links .col-12 {
    flex: 0 0 auto;
    max-width: none;
    width: auto;
}

.payment-link {
    display: inline-block;
    margin: 0;
    padding: 12px 20px;
    background: var(--accent-red);
    color: var(--ghost-white);
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.payment-link:hover {
    background: var(--blood-red);
    color: var(--ghost-white);
    transform: translateY(-2px);
    box-shadow: var(--glow-effect);
}

.payment-status {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.payment-status.success {
    background: rgba(139, 0, 0, 0.2);
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
}

.payment-status.pending {
    background: rgba(139, 0, 0, 0.1);
    border: 2px solid var(--blood-red);
    color: var(--blood-red);
}

.payment-status.failed {
    background: rgba(139, 0, 0, 0.3);
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
}

/* Footer */
.horror-footer {
    background: var(--primary-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--accent-red);
    text-align: center;
    position: relative;
}

.horror-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.footer-quote {
    margin-bottom: 2rem;
}

.ominous-text {
    font-size: 1.1rem;
    color: var(--accent-red);
    font-style: italic;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    margin-bottom: 0;
}

.footer-credits p {
    color: var(--dim-white);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.creator-link {
    color: var(--accent-red);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.creator-link:hover {
    color: var(--ghost-white);
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.whisper-text {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    color: var(--ghost-white);
    border-radius: 50%;
    text-decoration: none;
    line-height: 50px;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all var(--transition-speed) ease;
}

.social-link:hover {
    background: var(--blood-red);
    color: var(--ghost-white);
    transform: translateY(-5px);
    box-shadow: var(--glow-effect);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .game-poster {
        width: 250px;
        height: 330px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    .download-card {
        margin-bottom: 2rem;
    }
    
    .info-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .game-poster {
        width: 200px;
        height: 280px;
    }
    
    .horror-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .download-card {
        padding: 2rem;
    }
    
    .review-card {
        margin: 0;
        padding: 1.5rem;
    }
}

/* Performance optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Print styles */
@media print {
    .horror-nav,
    .loading-screen,
    .slider-controls,
    .horror-footer {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section-title {
        color: #000;
    }
}
