/* Import spooky fonts */
@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Chiller:wght@400&family=Nosifer&family=Butcherman&family=Eater&display=swap');

/* Root variables for spooky theme */
:root {
    --spooky-black: #0a0a0a;
    --spooky-dark-gray: #1a1a1a;
    --spooky-gray: #2a2a2a;
    --spooky-light-gray: #3a3a3a;
    --spooky-purple: #4a0e4e;
    --spooky-red: #8b0000;
    --spooky-orange: #ff6600;
    --spooky-green: #228b22;
    --spooky-yellow: #ffd700;
    --spooky-white: #f0f0f0;
    --spooky-text: #e0e0e0; /* Better gray text color */
    --spooky-fog: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 20px rgba(255, 102, 0, 0.3);
    --blood-red: #660000;
    --bone-white: #f5f5dc;
}

/* Global styles */
* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--spooky-black) 0%, var(--spooky-dark-gray) 100%);
    color: #e0e0e0; /* Improved light gray text for better readability */
    font-family: 'Georgia', serif;
    min-height: 100vh;
    position: relative;
}

/* Add subtle fog effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--spooky-fog) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
.spooky-title {
    font-family: 'Creepster', cursive;
    color: var(--spooky-orange);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px var(--spooky-orange);
    letter-spacing: 2px;
}

.spooky-subtitle {
    font-family: 'Butcherman', cursive;
    color: var(--spooky-orange);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.spooky-text {
    font-family: 'Eater', cursive;
    color: var(--spooky-orange);
}

.spooky-number {
    font-family: 'Nosifer', cursive;
    color: var(--spooky-red);
    text-shadow: 0 0 10px var(--spooky-red);
}

/* Navigation */
.spooky-nav {
    background: linear-gradient(90deg, var(--spooky-black) 0%, var(--spooky-purple) 50%, var(--spooky-black) 100%) !important;
    border-bottom: 2px solid var(--spooky-orange);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.spooky-brand {
    font-family: 'Creepster', cursive !important;
    font-size: 1.8rem !important;
    color: var(--spooky-orange) !important;
    text-shadow: 0 0 10px var(--spooky-orange);
    transition: all 0.3s ease;
}

.spooky-brand:hover {
    color: var(--spooky-yellow) !important;
    text-shadow: 0 0 15px var(--spooky-yellow);
    transform: scale(1.05);
}

.brand-tagline {
    display: block;
    font-family: 'Nosifer', cursive;
    font-size: 0.6rem;
    color: var(--spooky-red);
    text-shadow: 0 0 5px var(--spooky-red);
    margin-top: -5px;
    line-height: 1;
}

.navbar-nav .nav-link {
    color: var(--spooky-white) !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--spooky-orange) !important;
    text-shadow: 0 0 5px var(--spooky-orange);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="fog" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="30" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23fog)"/></svg>');
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px; /* Add space for fixed navbar */
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: spookyGlow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--bone-white);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@keyframes spookyGlow {
    0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px var(--spooky-orange); }
    100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px var(--spooky-orange), 0 0 30px var(--spooky-orange); }
}

/* Search Form */
.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.spooky-input-group {
    position: relative;
}

.spooky-input {
    background: rgba(0, 0, 0, 0.7) !important;
    border: 2px solid var(--spooky-gray) !important;
    color: var(--spooky-white) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
}

.spooky-input:focus {
    border-color: var(--spooky-orange) !important;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: var(--spooky-white) !important;
}

.spooky-input::placeholder {
    color: var(--spooky-light-gray) !important;
}

.spooky-select {
    background: rgba(0, 0, 0, 0.7) !important;
    border: 2px solid var(--spooky-gray) !important;
    color: var(--spooky-white) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
}

.spooky-select:focus {
    border-color: var(--spooky-orange) !important;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: var(--spooky-white) !important;
}

.spooky-select option {
    background: var(--spooky-dark-gray) !important;
    color: var(--spooky-white) !important;
}

/* Spooky Button */
.spooky-btn {
    background: linear-gradient(45deg, var(--spooky-red), var(--blood-red)) !important;
    border: 2px solid var(--spooky-orange) !important;
    color: var(--spooky-white) !important;
    font-weight: bold !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    overflow: hidden !important;
}

.spooky-btn:hover {
    background: linear-gradient(45deg, var(--blood-red), var(--spooky-red)) !important;
    color: var(--spooky-yellow) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-glow) !important;
    border-color: var(--spooky-yellow) !important;
}

.spooky-btn:active {
    transform: translateY(0) !important;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--spooky-gray);
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--spooky-gray);
}

.suggestion-item:hover {
    background: rgba(255, 102, 0, 0.2);
    color: var(--spooky-orange);
}

.suggestion-item:last-child {
    border-bottom: none;
}

/* Cards */
.spooky-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%);
    border: 2px solid var(--spooky-gray);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spooky-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--spooky-orange), var(--spooky-red), var(--spooky-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spooky-card:hover {
    border-color: var(--spooky-orange);
    box-shadow: 0 6px 25px rgba(255, 102, 0, 0.2);
    transform: translateY(-3px);
}

.spooky-card:hover::before {
    opacity: 1;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    height: 100%;
}

.feature-icon {
    font-size: 3rem;
    color: var(--spooky-orange);
    margin-bottom: 1rem;
    animation: float 6s ease-in-out infinite;
}

.feature-icon i {
    text-shadow: 0 0 10px var(--spooky-orange);
}

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

.feature-card h3 {
    color: var(--spooky-orange);
    margin-bottom: 1rem;
    font-family: 'Butcherman', cursive;
}



/* Maps */
.haunted-map {
    height: 400px;
    border-radius: 12px;
    border: 2px solid var(--spooky-gray);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.location-map {
    height: 300px;
    border-radius: 8px;
    border: 2px solid var(--spooky-gray);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Fix map scrolling issues */
.leaflet-container {
    position: relative !important;
    font-family: inherit !important;
}

.leaflet-control-container {
    pointer-events: auto !important;
}

/* Ensure map doesn't interfere with page scrolling */
#map, #locationMap, #resultsMap {
    touch-action: pan-x pan-y !important;
}

/* Improve map interaction - disable scroll wheel zoom by default */
.leaflet-container:not(:hover) {
    cursor: default !important;
}

.results-map {
    height: 350px;
    border-radius: 8px;
    border: 2px solid var(--spooky-gray);
    overflow: hidden;
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
    background: rgba(26, 26, 26, 0.95) !important;
    color: var(--spooky-white) !important;
    border: 2px solid var(--spooky-orange) !important;
    border-radius: 8px !important;
}

.leaflet-popup-content {
    color: var(--spooky-white) !important;
}

.leaflet-popup-tip {
    background: rgba(26, 26, 26, 0.95) !important;
    border: 2px solid var(--spooky-orange) !important;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(90deg, var(--spooky-purple), var(--spooky-black));
    border-top: 3px solid var(--spooky-orange);
    border-bottom: 3px solid var(--spooky-orange);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

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

/* Location Details */
.location-header h1 {
    margin-bottom: 1rem;
}

.location-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--spooky-light-gray);
}

.location-address, .location-year {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--bone-white);
}

/* Location Info */
.info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--spooky-gray);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.danger-level {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.danger-skull {
    color: var(--spooky-gray);
    transition: color 0.3s ease;
}

.danger-skull.active {
    color: var(--spooky-red);
    text-shadow: 0 0 5px var(--spooky-red);
}

.danger-text {
    margin-left: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Ghost Types */
.ghost-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.ghost-tag {
    background: linear-gradient(45deg, var(--spooky-purple), var(--blood-red));
    color: var(--bone-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--spooky-orange);
    transition: all 0.3s ease;
}

.ghost-tag:hover {
    background: linear-gradient(45deg, var(--blood-red), var(--spooky-purple));
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.ghost-tag-small {
    background: rgba(74, 14, 78, 0.7);
    color: var(--bone-white);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--spooky-orange);
    margin: 0.2rem;
    display: inline-block;
}

/* Search Results */
.result-item {
    transition: all 0.3s ease;
}

.result-title a {
    color: var(--spooky-orange);
    text-decoration: none;
    font-family: 'Butcherman', cursive;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.result-title a:hover {
    color: var(--spooky-yellow);
    text-shadow: 0 0 10px var(--spooky-yellow);
}

.result-address {
    color: var(--spooky-light-gray);
    margin-bottom: 1rem;
}

.result-description {
    color: var(--bone-white);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.distance-badge {
    background: var(--spooky-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.danger-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
}

.danger-1 { background: var(--spooky-green); }
.danger-2 { background: var(--spooky-yellow); color: black; }
.danger-3 { background: var(--spooky-orange); }
.danger-4 { background: var(--spooky-red); }
.danger-5 { background: var(--blood-red); animation: pulse 2s infinite; }

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
}

.no-results-icon {
    font-size: 4rem;
    color: var(--spooky-gray);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.no-results-suggestions {
    margin-top: 2rem;
    color: var(--bone-white);
}

/* Links */
.spooky-link {
    color: var(--spooky-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.spooky-link:hover {
    color: var(--spooky-yellow);
    text-shadow: 0 0 5px var(--spooky-yellow);
    text-decoration: underline;
}

/* Breadcrumb */
.spooky-breadcrumb {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.spooky-breadcrumb .breadcrumb-item {
    color: var(--bone-white);
}

.spooky-breadcrumb .breadcrumb-item a {
    color: var(--spooky-orange);
    text-decoration: none;
}

.spooky-breadcrumb .breadcrumb-item a:hover {
    color: var(--spooky-yellow);
}

.spooky-breadcrumb .breadcrumb-item.active {
    color: var(--spooky-light-gray);
}

/* Alerts */
.spooky-alert {
    background: rgba(255, 102, 0, 0.1) !important;
    border: 2px solid var(--spooky-orange) !important;
    color: var(--bone-white) !important;
    border-radius: 8px !important;
}

/* Footer */
.spooky-footer {
    background: linear-gradient(90deg, var(--spooky-black), var(--spooky-purple), var(--spooky-black));
    border-top: 3px solid var(--spooky-orange);
    padding: 2rem 0;
    margin-top: 3rem;
}

.spooky-icons {
    font-size: 1.5rem;
    color: var(--spooky-orange);
}

.spooky-icons i {
    margin: 0 0.5rem;
    animation: float 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.5s);
}

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid var(--spooky-red);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.disclaimer-text {
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

.spooky-divider {
    border-color: var(--spooky-orange);
    opacity: 0.3;
}

/* Improve text readability throughout */
p, .feature-card p, .stat-label {
    color: #d0d0d0 !important;
}

.hero-subtitle {
    color: #c0c0c0 !important;
}

/* Mobile Google Maps Integration */
.result-address {
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-address:hover {
    color: var(--spooky-orange);
}

.location-address {
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-address:hover {
    color: var(--spooky-orange);
}

.mobile-tap-hint {
    font-size: 0.8rem;
    color: var(--spooky-yellow);
    margin-top: 0.25rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .mobile-tap-hint {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .location-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .result-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .haunted-map {
        height: 300px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .search-form .row > div {
        margin-bottom: 0.5rem;
    }
    
    .spooky-card {
        padding: 1rem;
    }
    
    .haunted-map {
        height: 250px;
    }
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--spooky-gray);
    border-radius: 50%;
    border-top-color: var(--spooky-orange);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--spooky-orange);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--spooky-yellow);
}

/* Coming Soon placeholder styles */
.coming-soon-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2c1810 0%, #3d2318 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 2px dashed rgba(139, 69, 19, 0.3);
}

.coming-soon-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.coming-soon-content p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hunting Ghosts themed placeholder images */
.hunting-ghosts-placeholder {
    width: 100%;
    height: 300px;
    background: url('/static/images/hunting-ghosts-placeholder-dark.svg') no-repeat center center;
    background-size: contain;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hunting-ghosts-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

/* Alternative lighter version */
.hunting-ghosts-placeholder.light {
    background-image: url('/static/images/hunting-ghosts-placeholder.svg');
}

/* Top 25 Haunted Places Styles */
.hero-section-small {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23000" width="100" height="100"/><circle fill="%23333" cx="20" cy="20" r="2"/><circle fill="%23333" cx="80" cy="40" r="1.5"/><circle fill="%23333" cx="40" cy="80" r="1"/></svg>');
    min-height: 35vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.top-haunted-section {
    background: linear-gradient(180deg, var(--spooky-black) 0%, var(--spooky-purple) 100%);
    min-height: 100vh;
}

.haunted-card {
    background: linear-gradient(145deg, var(--spooky-black) 0%, #1a1a2e 100%);
    border: 2px solid var(--spooky-orange);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.haunted-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    border-color: var(--spooky-red);
}

.rank-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, var(--spooky-red), var(--spooky-orange));
    color: var(--spooky-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nosifer', cursive;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--spooky-yellow);
}

.haunted-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    border-bottom: 2px solid var(--spooky-orange);
}

.location-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 2px solid var(--spooky-orange);
    transition: all 0.3s ease;
}

.location-image:hover {
    filter: brightness(1.1) contrast(1.1);
}

.map-link {
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-link:hover {
    color: var(--spooky-yellow);
    transform: scale(1.1);
}

.location-address {
    cursor: pointer;
    text-decoration: underline;
    color: #fff;
    margin-left: 8px;
}

.location-address:hover {
    color: var(--spooky-yellow);
}

.mobile-tap-hint {
    font-size: 0.8em;
    color: var(--spooky-orange);
    font-style: italic;
    margin-top: 3px;
}

.haunted-content {
    padding: 1.5rem;
}

.haunted-title {
    font-family: 'Creepster', cursive;
    color: var(--spooky-orange);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.location-info {
    color: var(--spooky-red);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.location-info i {
    margin-right: 5px;
    color: var(--spooky-orange);
}

.haunted-description {
    color: var(--spooky-white);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive Design for Top 25 */
@media (max-width: 768px) {
    .rank-badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 10px;
        left: 10px;
    }
    
    .haunted-title {
        font-size: 1.1rem;
    }
    
    .haunted-description {
        font-size: 0.9rem;
    }
    
    .haunted-content {
        padding: 1rem;
    }
}
