            @font-face {
            font-family: "TheFrightHouseDEMO";
            src: url("https://braincandymagazine.neocities.org/fonts/TheFrightHouseDEMO.otf") format("truetype");
        }
        
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: linear-gradient(45deg, #1a0d00, #2d1810, #1a0d00);
            background-attachment: fixed;
            font-family: 'Georgia', cursive;
            color: #f4e4c1;
            overflow-x: hidden;
        }
        
        .vintage-paper {
            background: linear-gradient(45deg, #f4e4c1, #e8d5a3, #dcc896);
            min-height: 100vh;
            position: relative;
            box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
        }
        
        .vintage-paper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="1" result="noise"/><feColorMatrix in="noise" values="0 0 0 0 0.1 0 0 0 0 0.05 0 0 0 0 0 0 0 0 0.1 0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }
        
        .header {
            text-align: center;
            padding: 30px 20px;
            position: relative;
            z-index: 2;
        }
        
        .magazine-title {
            font-family: "TheFrightHouseDEMO";
            font-size: clamp(2.5rem, 8vw, 5rem);
            color: #8b0000;
            text-shadow: 3px 3px 0px #4a0000, 6px 6px 0px #2a0000;
            margin-bottom: 10px;
            animation: pulse 2s ease-in-out infinite alternate;
        }
        
        @keyframes pulse {
            from { text-shadow: 3px 3px 0px #4a0000, 6px 6px 0px #2a0000; }
            to { text-shadow: 3px 3px 0px #4a0000, 6px 6px 0px #2a0000, 0 0 20px #8b0000; }
        }
        
        .issue-title {
            font-family: 'Georgia', cursive;
            font-size: clamp(1.5rem, 5vw, 2.5rem);
            color: #4a0000;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .decorative-border {
            border: 8px solid #8b0000;
            border-image: repeating-linear-gradient(45deg, #8b0000, #8b0000 10px, #4a0000 10px, #4a0000 20px) 8;
            margin: 20px;
            padding: 30px;
            background: rgba(244, 228, 193, 0.9);
            position: relative;
            box-shadow: inset 0 0 50px rgba(0,0,0,0.2);
        }
        
        .decorative-border::before,
        .decorative-border::after {
            content: '🎃';
            position: absolute;
            font-size: 2rem;
            color: #ff6b00;
            animation: float 3s ease-in-out infinite;
        }
        
        .decorative-border::before {
            top: -10px;
            left: -10px;
            animation-delay: 0s;
        }
        
        .decorative-border::after {
            bottom: -10px;
            right: -10px;
            animation-delay: 1.5s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .intro-text {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
            color: #2d1810;
            font-weight: bold;
        }
        
        .challenges-section {
            margin: 40px 0;
        }
        
        .section-title {
            font-family: 'Georgia', cursive;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #8b0000;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .challenge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .challenge-card {
            background: linear-gradient(135deg, #2d1810, #1a0d00);
            border: 3px solid #8b0000;
            border-radius: 15px;
            padding: 20px;
            color: #f4e4c1;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .challenge-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
        }
        
        .challenge-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .challenge-title {
            font-family: 'Georgia', cursive;
            font-size: 1.3rem;
            color: #ff6b00;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .challenge-description {
            font-size: 1rem;
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }
        
        .movie-generator {
            background: linear-gradient(135deg, #4a0000, #2d1810);
            border: 3px solid #ff6b00;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            text-align: center;
        }
        
        .movie-title {
            font-family: 'Georgia', cursive;
            font-size: 1.8rem;
            color: #ff6b00;
            margin-bottom: 20px;
        }
        
        .movie-display {
            background: rgba(244, 228, 193, 0.1);
            border: 2px solid #8b0000;
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0;
            font-size: 1.2rem;
            color: #f4e4c1;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .generate-btn {
            background: linear-gradient(135deg, #8b0000, #ff6b00);
            border: none;
            color: white;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-family: 'Georgia', cursive;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .generate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 0, 0, 0.5);
        }
        
        .submission-section {
            background: linear-gradient(135deg, #1a0d00, #2d1810);
            border: 4px solid #8b0000;
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            text-align: center;
        }
        
        .submission-title {
            font-family: 'Georgia', cursive;
            font-size: 2.5rem;
            color: #ff6b00;
            margin-bottom: 20px;
            text-shadow: 3px 3px 0px #4a0000;
        }
        
        .submission-text {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: #f4e4c1;
            line-height: 1.6;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #ff6b00, #8b0000);
            border: none;
            color: white;
            padding: 20px 40px;
            font-size: 1.3rem;
            font-family: 'Georgia', cursive;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            text-decoration: none;
            display: inline-block;
        }
        
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(255, 107, 0, 0.5);
        }
        
        .spooky-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-bat {
            position: absolute;
            font-size: 1.5rem;
            color: #4a0000;
            animation: fly 8s ease-in-out infinite;
        }
        
        @keyframes fly {
            0%, 100% { transform: translateX(-100px) translateY(0px); }
            25% { transform: translateX(20vw) translateY(-50px); }
            50% { transform: translateX(50vw) translateY(20px); }
            75% { transform: translateX(80vw) translateY(-30px); }
        }
        
        .floating-ghost {
            position: absolute;
            font-size: 2rem;
            color: rgba(244, 228, 193, 0.7);
            animation: ghost-float 6s ease-in-out infinite;
        }
        
        @keyframes ghost-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        @media (max-width: 768px) {
            .decorative-border {
                margin: 10px;
                padding: 20px;
            }
            
            .challenge-grid {
                grid-template-columns: 1fr;
            }
            
            .main-content {
                padding: 10px;
            }
        }