/* ================================================================
   LADY RISA TSUKI'S VAMPIRE PARODY WEBSITE STYLES
   A ruthless satirical CSS masterpiece by the ultimate vampire queen
   ================================================================ */

/* ================== ROOT VARIABLES ================== */
:root {
    --vampire-red: #8B0000;
    --blood-red: #DC143C;
    --gothic-black: #1a1a1a;
    --midnight-black: #0d0d0d;
    --pale-white: #f8f8f8;
    --gold-accent: #FFD700;
    --shadow-purple: #4B0082;
    --cringe-pink: #FF69B4;
    
    /* Font families for maximum drama */
    /* --title-font: 'Dragonlord', cursive; */
	--title-font: 'MagicLegends', serif;
    --accent-font: 'Solander', cursive;
    --body-font: 'reemkufi', serif;
	--spcl-font: 'MagicLegends', serif;
    
    /* Layout variables */
    --main-width: 1080px;
    --section-padding: 60px;
    --border-radius: 8px;
}

/* ================== GLOBAL RESET & BASE STYLES ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--pale-white);
    overflow-x: hidden;
    background: var(--midnight-black);
}

/* ================== BACKGROUND VIDEO CONTAINER ================== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background effect */
}

/* ================== MAIN CONTAINER - BOXED LAYOUT ================== */
.main-container {
    max-width: var(--main-width);
    margin: 0 auto;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-left: 2px solid var(--vampire-red);
    border-right: 2px solid var(--vampire-red);
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 50px rgba(139, 0, 0, 0.3);
}

/* ================== NAVIGATION STYLES ================== */

.main-nav {
    display: flex;
    justify-content: center; /* This centers content horizontally */
    align-items: center;
	text-align: center;
    padding: 50px 50px;
    background: linear-gradient(135deg, var(--gothic-black), var(--midnight-black));
    border-bottom: 3px solid var(--vampire-red);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand h1 {
    font-family: var(--spcl-font);
    font-size: 4em;
    color: var(--gold-accent);
	align-items: center;
    text-align: center;
    margin-bottom: 5px;
}

.nav-brand .subtitle {
    font-family: var(--accent-font);
	letter-spacing: 3px;
    font-size: 2em;
    color: var(--cringe-pink);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--pale-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: var(--border-radius);
}

.nav-menu a:hover {
    color: var(--blood-red);
    background: rgba(139, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* ================== HERO SECTION - 16:9 RATIO ================== */
.hero-section {
    position: relative;
    margin: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* Perfect 16:9 ratio as requested */
    overflow: hidden;
    border-bottom: 4px solid var(--vampire-red);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(139, 0, 0, 0.4),
        rgba(75, 0, 130, 0.3),
        transparent 70%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-title {
    font-family: var(--title-font);
    font-size: 4em;
    color: var(--gold-accent);
    text-shadow: 4px 4px 0 var(--vampire-red), 8px 8px 20px rgba(0,0,0,0.8);
    margin-bottom: 20px;
    animation: glow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5em;
    color: var(--pale-white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    margin-bottom: 30px;
    font-style: italic;
}

.cta-button {
    background: linear-gradient(45deg, var(--vampire-red), var(--blood-red));
    color: var(--pale-white);
    border: none;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.6);
    background: linear-gradient(45deg, var(--blood-red), var(--cringe-pink));
}

/* Hero title glow animation */
@keyframes glow {
    from { text-shadow: 4px 4px 0 var(--vampire-red), 8px 8px 20px rgba(139, 0, 0, 0.5); }
    to { text-shadow: 4px 4px 0 var(--vampire-red), 8px 8px 30px rgba(139, 0, 0, 0.8); }
}

/* ================== CONTENT SECTIONS ================== */
.content-section {
    padding: var(--section-padding) 40px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-container.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.section-container.reverse > * {
    direction: ltr;
}

/* ================== TYPOGRAPHY STYLES ================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--accent-font);
    margin-bottom: 20px;
    color: var(--gold-accent);
	text-align: center;
}

/* H1 - Main titles (hero, major sections) */
h1 {
    font-size: 3.5em;
    text-align: center;
    text-shadow: 2px 2px 0 var(--vampire-red);
}

/* H2 - Section headers */
h2 {
    font-size: 2.5em;
    color: var(--blood-red);
    text-shadow: 1px 1px 0 var(--gothic-black);
    border-bottom: 3px solid var(--vampire-red);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* H3 - Subsection headers */
h3 {
    font-size: 2em;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

.chat-sidebar h3 {
    color: var(--gold-accent);
    font-size: 1.6em; /* <--- Make sure this is 1.6em */
    margin-bottom: 25px; /* <--- Make sure this is 25px */
    text-align: center;
    border-bottom: 2px dashed rgba(var(--gold-accent), 0.4); /* <--- Make sure this is 2px solid rgba(...) */
    padding-bottom: 15px; /* <--- Make sure this is 15px */
    text-shadow: 0 0 5px rgba(var(--gold-accent), 0.5); /* <--- Make sure this is present */
}

/* H4 - Minor headers and labels */
h4 {
    font-size: 1.5em;
    color: var(--cringe-pink);
    margin-bottom: 10px;
}

/* H5 & H6 - Small headers */
h5, h6 {
    font-size: 1.2em;
    color: var(--pale-white);
    font-weight: bold;
}

p {
    margin-bottom: 20px;
    font-size: 1.5em;
    line-height: 1.8;
}

/* ================== TEXT CONTENT STYLES ================== */
.text-content {
    font-size: 1.1em;
}

.risa-quote, .risa-wisdom {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(75, 0, 130, 0.2));
    border-left: 5px solid var(--vampire-red);
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.risa-wisdom footer {
    text-align: right;
    margin-top: 15px;
    font-weight: bold;
    color: var(--gold-accent);
}

/* ================== IMAGE STYLES ================== */
.section-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    border: 3px solid var(--vampire-red);
}

.section-image:hover {
    transform: scale(1.05);
}

.image-caption {
    display: block;
    text-align: center;
    font-style: italic;
    color: var(--cringe-pink);
    margin-top: 10px;
    font-size: 0.9em;
}

/* ================== MODEL'S CHOICE 1: ACADEMY SECTION ================== */
.model-choice-1 {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.1), rgba(139, 0, 0, 0.1));
}

.academy-container {
    text-align: center;
}

.academy-title {
    font-family: var(--title-font);
    font-size: 3.5em;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.academy-intro {
    font-size: 1.3em;
    margin-bottom: 50px;
    color: var(--pale-white);
    font-style: italic;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.course-card {
    background: linear-gradient(135deg, var(--gothic-black), var(--midnight-black));
    border: 2px solid var(--vampire-red);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.4);
}

.course-card.featured {
    border-color: var(--gold-accent);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), var(--gothic-black));
}

.ribbon {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold-accent);
    color: var(--gothic-black);
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.8em;
    text-transform: uppercase;
}

.course-card h3 {
    color: var(--blood-red);
    margin-bottom: 15px;
}

.price {
	font-family: var(--accent-font);
    font-size: 2.5em;
    color: var(--gold-accent);
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 1px 1px 0 var(--vampire-red);
}

.course-card ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.course-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    position: relative;
    padding-left: 20px;
}

.course-card li:before {
    content: "??";
    position: absolute;
    left: 0;
}

.enroll-btn {
    background: linear-gradient(45deg, var(--vampire-red), var(--blood-red));
    color: var(--pale-white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.enroll-btn:hover {
    background: linear-gradient(45deg, var(--blood-red), var(--cringe-pink));
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 0.8em;
    color: var(--cringe-pink);
    font-style: italic;
    margin-top: 30px;
}

/* ================== PHOTO GALLERY & MODAL ================== */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 2px solid var(--vampire-red);
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--pale-white);
    padding: 15px;
    text-align: center;
    font-weight: bold;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

/* Modal styles */
.modal {
    display: none; /* Changed to flex by JS when active */
    justify-content: center; /* Horizontally center content */
    align-items: center;     /* Vertically center content */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--pale-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--blood-red);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--pale-white);
    padding: 20px;
    font-size: 1.2em;
    font-style: italic;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================== DAILY ROUTINE SECTION ================== */
.routine-schedule {
    background: rgba(139, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 30px 0;
}

.time-slot {
    padding: 15px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: rgba(139, 0, 0, 0.1);
    transform: translateX(10px);
}

.time-slot:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.time-slot strong {
    color: var(--gold-accent);
    font-size: 1.2em;
    margin-right: 15px;
}

/* ================== MODEL'S CHOICE 2: QUIZ SECTION ================== */
.model-choice-2 {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(75, 0, 130, 0.1));
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quiz-container h2 {
    font-family: var(--title-font);
    font-size: 3em;
	letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.quiz-intro {
    font-size: 1.6em;
    margin-bottom: 40px;
    color: var(--pale-white);
    font-style: italic;
}

.quiz-questions {
    text-align: left;
    margin: 40px 0;
}

.question {
    display: none;
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 2px solid var(--vampire-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.question.active {
    display: block;
    animation: slideIn 0.5s ease;
}

.question h3 {
    color: var(--blood-red);
    margin-bottom: 25px;
    font-size: 1.5em;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-options label {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quiz-options label:hover {
    background: rgba(139, 0, 0, 0.2);
    border-color: var(--vampire-red);
    transform: translateX(10px);
}

.quiz-options input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
    accent-color: var(--vampire-red);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.quiz-navigation button {
    background: linear-gradient(45deg, var(--vampire-red), var(--blood-red));
    color: var(--pale-white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 120px;
}

.quiz-navigation button:hover {
    background: linear-gradient(45deg, var(--blood-red), var(--cringe-pink));
    transform: translateY(-2px);
}

.quiz-result {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.1));
    padding: 40px;
    border-radius: var(--border-radius);
    border: 3px solid var(--gold-accent);
    text-align: center;
    margin: 40px 0;
    animation: resultReveal 0.8s ease;
}

.quiz-result h3 {
    color: var(--gold-accent);
    font-size: 2em;
    margin-bottom: 20px;
}

.quiz-result p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.retake-btn {
    background: linear-gradient(45deg, var(--shadow-purple), var(--cringe-pink));
    color: var(--pale-white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.retake-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: translateX(-50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes resultReveal {
    from { 
        opacity: 0; 
        transform: scale(0.8); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* ================== VAMPIRE TIPS SECTION ================== */
.tips-list {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.tip-item {
    background: rgba(139, 0, 0, 0.1);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--vampire-red);
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: rgba(139, 0, 0, 0.2);
    transform: translateX(10px);
}

.tip-item h4 {
    color: var(--gold-accent);
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* ================== MODEL'S CHOICE 3: TESTIMONIALS SECTION ================== */
.model-choice-3 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(139, 0, 0, 0.1));
}

.testimonials-container {
    text-align: center;
}

.testimonials-intro {
    font-size: 1.7em;
    margin-bottom: 50px;
    font-style: italic;
    color: var(--pale-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--gothic-black), var(--midnight-black));
    border: 2px solid var(--gold-accent);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.5em;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--pale-white);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold-accent);
    object-fit: cover;
}

.author-info h4 {
    color: var(--gold-accent);
    margin-bottom: 5px;
    font-size: 1.1em;
}

.author-info span {
    color: var(--cringe-pink);
    font-size: 0.9em;
    display: block;
    margin-bottom: 8px;
}

.rating {
    color: var(--gold-accent);
    font-size: 1.2em;
}

.testimonials-cta {
    margin-top: 50px;
}

.testimonial-btn {
    background: linear-gradient(45deg, var(--gold-accent), #FFE55C);
    color: var(--gothic-black);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.testimonial-disclaimer {
    font-size: 0.8em;
    color: var(--cringe-pink);
    font-style: italic;
    margin-top: 20px;
}

/* ================== FOOTER STYLES ================== */
.site-footer {
    background: linear-gradient(135deg, var(--midnight-black), var(--gothic-black));
    border-top: 4px solid var(--vampire-red);
    padding: 60px 40px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--gold-accent);
    margin-bottom: 25px;
    font-size: 1.5em;
    border-bottom: 2px solid var(--vampire-red);
    padding-bottom: 10px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    color: var(--pale-white);
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: var(--border-radius);
}

.social-link:hover {
    color: var(--cringe-pink);
    background: rgba(139, 0, 0, 0.1);
    transform: translateX(10px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--pale-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blood-red);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--vampire-red);
    border-radius: var(--border-radius);
    background: rgba(26, 26, 26, 0.8);
    color: var(--pale-white);
    font-size: 1em;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.subscribe-btn {
    background: linear-gradient(45deg, var(--vampire-red), var(--blood-red));
    color: var(--pale-white);
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, var(--blood-red), var(--cringe-pink));
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 0, 0, 0.3);
}

.footer-bottom p {
    margin-bottom: 15px;
    color: var(--pale-white);
}

.final-disclaimer {
    font-size: 0.8em;
    color: var(--cringe-pink);
    font-style: italic;
    line-height: 1.4;
}

/* Easter egg counter */
.easter-egg {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(139, 0, 0, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    color: var(--cringe-pink);
}

.easter-egg:hover {
    background: rgba(139, 0, 0, 0.4);
    transform: scale(1.05);
}

#eggCounter {
    font-weight: bold;
    color: var(--gold-accent);
}

/* ================== ENROLLMENT MODAL ================== */
.modal-content-form {
    background: linear-gradient(135deg, var(--gothic-black), var(--midnight-black));
    margin: 5% auto;
    padding: 40px;
    border: 3px solid var(--vampire-red);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    animation: modalSlide 0.5s ease;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {
    padding: 15px;
    border: 2px solid var(--vampire-red);
    border-radius: var(--border-radius);
    background: rgba(26, 26, 26, 0.8);
    color: var(--pale-white);
    font-size: 1em;
    font-family: var(--body-font);
}

.enrollment-form input:focus,
.enrollment-form select:focus,
.enrollment-form textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.enrollment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.enrollment-form button {
    background: linear-gradient(45deg, var(--vampire-red), var(--blood-red));
    color: var(--pale-white);
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.enrollment-form button:hover {
    background: linear-gradient(45deg, var(--blood-red), var(--cringe-pink));
    transform: translateY(-2px);
}

@keyframes modalSlide {
    from { 
        opacity: 0; 
        transform: translateY(-100px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 768px) {
    .main-container {
        margin: 0;
        border-left: none;
        border-right: none;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        position: relative;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-brand h1 {
        font-size: 2em;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .section-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .section-container.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .content-section {
        padding: 40px 20px;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .quiz-navigation {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-content-form {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }
    
    .academy-title {
        font-size: 2em;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .course-card {
        padding: 20px;
    }
    
    .quiz-options label {
        padding: 10px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

/* ================== PRINT STYLES ================== */
@media print {
    .video-background,
    .main-nav,
    .modal,
    .cta-button,
    .enroll-btn,
    .testimonial-btn,
    .subscribe-btn {
        display: none !important;
    }
    
    .main-container {
        box-shadow: none;
        border: none;
        background: white;
        color: black;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

/* ================== ACCESSIBILITY IMPROVEMENTS ================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    #bg-video {
        animation-play-state: paused !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --vampire-red: #ff0000;
        --blood-red: #ff3333;
        --gold-accent: #ffff00;
        --pale-white: #ffffff;
        --gothic-black: #000000;
        --midnight-black: #000000;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 3px solid var(--gold-accent);
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Use gap property for main container spacing */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem; /* Modern gap property for spacing */
}

/* Responsive video adjustments */
@media (max-width: 768px) {
    .video-container {
        max-width: 250px;
    }
    
    .container {
        gap: 1.5rem; /* Smaller gap on mobile */
    }
}

@media (max-width: 480px) {
    .video-container {
        max-width: 200px;
    }
    
    .container {
        gap: 1rem;
    }
}

/* Gothic Card Panel Styling for Text+Image Sections */
.gothic-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(75, 0, 130, 0.15));
    border: 2px solid var(--vampire-red);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), inset 0 0 20px rgba(139,0,0,0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect: subtle "levitation" */
.gothic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.4), inset 0 0 30px rgba(139,0,0,0.5);
}

/* Ornamental corner accents (subtle) */
.gothic-card::before,
.gothic-card::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold-accent);
    opacity: 0.3;
}
.gothic-card::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}
.gothic-card::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

/* === Social Button Grid (PNG style) === */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 15px;
}

@media (max-width: 960px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .social-grid { grid-template-columns: 1fr; }
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(75,0,130,0.25));
  border: 1.5px solid rgba(139,0,0,0.4);
  color: var(--pale-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.social-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--vampire-red), var(--blood-red));
  box-shadow: 0 10px 28px rgba(139,0,0,0.45);
}

.social-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  image-rendering: crisp-edges;
}

/* Inside the card: image + text tweaks */
.gothic-card .section-image {
    border: 3px solid var(--gold-accent);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}
.gothic-card h2 {
    text-align: left;
    font-size: 2em;
    border-bottom: 2px solid var(--vampire-red);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.gothic-card p {
    font-size: 1.1em;
    color: var(--pale-white);
}
/* === Teachings Section Reflow === */
.teachings-container {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.teachings-container h2 {
  text-align: center;
  margin-bottom: 30px;
}

.wisdom-image {
  margin: 0 auto 40px;
  max-width: 600px;
}

.wisdom-image img {
  display: block;
  margin: 0 auto;
}

.tips-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
  text-align: left;
}

@media (max-width: 768px) {
  .tips-list {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* === Gallery (My Aesthetic) Reformat === */
.gallery-container {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-intro {
  font-size: 1.2em;
  color: var(--pale-white);
  margin-bottom: 40px;
  font-style: italic;
}

.aesthetic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 900px) {
  .aesthetic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .aesthetic-grid {
    grid-template-columns: 1fr;
  }
}

/* === CryptTok vertical showcase === */
.shorts-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.shorts-intro {
  font-size: 1.1em;
  font-style: italic;
  color: var(--pale-white);
  margin-bottom: 24px;
  opacity: .95;
}

/* Reaction bar */
.reaction-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 28px;
  flex-wrap: wrap;
}

.react-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26,26,26,.9), rgba(75,0,130,.22));
  border: 1.5px solid rgba(139,0,0,.5);
  color: var(--pale-white);
  font-weight: 800;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

.react-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(139,0,0,.35);
  background: linear-gradient(135deg, var(--vampire-red), var(--blood-red));
}

.react-btn .count {
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(0,0,0,.3);
  font-weight: 700;
}

/* Fake live chat */
.chat-wrap {
  background: linear-gradient(135deg, rgba(139,0,0,.10), rgba(75,0,130,.10));
  border: 1.5px solid rgba(139,0,0,.35);
  border-radius: 14px;
  padding: 18px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.chat-title {
  margin: 0 0 10px;
  font-size: 2.5em;
  text-align: center;
  color: var(--gold-accent);
  border: none;
}

.chat-feed {
  list-style: none;
  display: grid;
  gap: 10px;
  max-height: 220px;
  overflow: auto;
  padding-right: 6px;
}

.chat-feed li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  background: rgba(26,26,26,.7);
  border: 1px solid rgba(139,0,0,.25);
  border-radius: 10px;
  padding: 8px 10px;
}

.chat-ava {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,215,0,.4);
}

/* subtle burst when reacting */
.react-burst {
  position: relative;
}
.react-burst::after {
  content: "✨";
  position: absolute;
  right: -8px;
  top: -10px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity .25s ease, transform .25s ease;
}
.react-burst.active::after {
  opacity: 1;
  transform: scale(1.2);
}
/* === CryptTok Portrait Video Section === */
.video-section {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.video-container {
  width: 100%;
  max-width: 420px;          /* increase if you want bigger portrait */
  aspect-ratio: 9 / 16;      /* force portrait shape */
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid #333;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  position: relative;
}

.portrait-video {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fills the portrait frame */
  display: block;
}


.phone-frame {
  position: relative;
  max-width: 380px;          /* tweak to your liking */
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 36px;       /* rounded phone corners */
  padding: 50px 12px 70px;   /* space for bezel, notch, home bar */
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  border: 3px solid #111;
  margin: 0 auto;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 16px;
  background: #222;
  border-radius: 12px;
}

.phone-frame::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: #333;
  border-radius: 3px;
}

/* Inside video fits perfectly */
.phone-frame .portrait-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
  background: #000;
  display: block;
}

/* ================== VIDEO SERMON SECTION ================== */
.video-player-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Enforces 16:9 ratio */
    background-color: var(--midnight-black);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--vampire-red);
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(139, 0, 0, 0.7);
    border-radius: 50%;
    border: 3px solid var(--gold-accent);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Triangle "play" symbol */
.play-icon-overlay::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid var(--pale-white);
    margin-left: 5px;
}

.video-player-container:hover .play-icon-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(220, 20, 60, 0.8);
}

.sermon-video {
    width: 100%;
    height: 100%;
    display: none; /* Hidden by default */
}

/* State when video is playing */
.video-player-container.is-playing .video-cover,
.video-player-container.is-playing .play-icon-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-player-container.is-playing .sermon-video {
    display: block;
}

/* Center the header inside the video sermon section */
.video-header h2 {
    text-align: center;
}
/* ================== ShittyChat ================== */
/* --- Coven Chat Section --- */
/* --- Coven Chat Section --- */
#coven-chat {
    padding: 80px 20px; /* Updated padding from earlier suggestion */
    background: radial-gradient(circle at top center, rgba(30,0,30,1) 0%, rgba(10,0,10,1) 50%, rgba(0,0,0,1) 100%); /* <-- REPLACEMENT */
    color: var(--pale-white);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.9),
                0 0 30px rgba(var(--blood-red), 0.3);
}

#coven-chat h2 {
    color: var(--blood-red); /* A bold accent for the title */
    margin-bottom: 40px;
    font-size: 2.5em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.chat-container {
    display: flex;
    gap: 30px; /* Space between sidebar and main chat */
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--gothic-black); /* Slightly lighter black for chat background */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(var(--vampire-red), 0.3); /* Subtle border */
    overflow: hidden; /* Ensures rounded corners on children too */
}
.chat-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, rgba(var(--shadow-purple), 0.1), transparent 50%, rgba(var(--blood-red), 0.1));
    pointer-events: none; /* Allows clicks to pass through */
    z-index: 1; /* Make sure it's above the background but below content */
    opacity: 0.7;
    border-radius: 15px; /* Match container border-radius */
}
.chat-sidebar {
    width: 250px;
    background-color: #1e1e1e; /* Darker than main chat for distinction */
    padding: 20px;
    border-right: 1px solid rgba(var(--vampire-red), 0.2);
    flex-shrink: 0; /* Prevents sidebar from shrinking */
}



.online-members {
    list-style: none;
    padding: 0;
    margin: 0;
}

.online-members li {
    padding: 10px 0;
    font-size: 0.95em;
    border-bottom: 1px dotted rgba(var(--pale-white), 0.1);
    display: flex;
    align-items: center;
}

.online-members li:last-child {
    border-bottom: none;
}

.online-members .status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: var(--cringe-pink); /* Cringe pink for online status */
    box-shadow: 0 0 5px var(--cringe-pink);
    animation: pulse 1.5s infinite alternate; /* Subtle pulse effect */
}

.online-members .status-indicator.offline {
    background-color: #888; /* Grey for offline */
    box-shadow: none;
    animation: none;
}

.online-members .status-indicator.idle {
    background-color: var(--shadow-purple); /* Idle purple */
    box-shadow: 0 0 5px var(--shadow-purple);
    animation: none;
}


@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; }
}


.chat-main {
    flex-grow: 1; /* Takes up remaining space */
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.chat-log {
    flex-grow: 1; /* Chat log takes most of the vertical space */
    overflow-y: auto; /* Enable scrolling for chat history */
    border: 1px solid rgba(var(--gold-accent), 0.1);
    background-color: #0d0d0d; /* Even darker for the chat messages themselves */
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    max-height: 400px; /* Limit height to prevent chat from becoming too tall */
    display: flex; /* Make it a flex container */
    flex-direction: column; /* Stack messages vertically */
}

/* Scrollbar styling for webkit browsers */
.chat-log::-webkit-scrollbar {
    width: 8px;
}

.chat-log::-webkit-scrollbar-track {
    background: #111;
    border-radius: 10px;
}

.chat-log::-webkit-scrollbar-thumb {
    background: var(--vampire-red);
    border-radius: 10px;
}

.chat-log::-webkit-scrollbar-thumb:hover {
    background: var(--blood-red);
}

.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 85%;
    word-wrap: break-word; /* Prevents long words from breaking layout */
    line-height: 1.4;
    font-size: 0.95em;
    animation: slideInMessage 0.3s ease-out; /* Subtle message entry animation */
}

@keyframes slideInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.message.incoming {
    background-color: #2a2a2a; /* <--- This background-color is crucial */
    color: var(--pale-white);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}

.message.outgoing {
    background-color: var(--shadow-purple); /* Purple for user's own messages */
    color: var(--pale-white);
    align-self: flex-end; /* Align outgoing messages to the right */
    border-bottom-right-radius: 3px;
}

.message .username {
    font-weight: bold;
    color: var(--cringe-pink); /* Cringe pink for usernames, maybe a touch of glow */
    text-shadow: 0 0 3px rgba(var(--cringe-pink), 0.7); /* Subtle glow */
    margin-right: 8px;
}

.message .timestamp {
    font-size: 0.75em;
    color: #888;
    margin-left: 10px;
}

.system-message {
    background-color: var(--vampire-red);
    color: var(--pale-white);
    text-align: center;
    font-style: italic;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    align-self: center; /* Center system messages */
}

.typing-indicators {
    min-height: 25px; /* Reserve space for typing indicators */
    margin-bottom: 15px;
    font-style: italic;
    color: #aaa;
    font-size: 0.85em;
    display: flex;
    flex-wrap: wrap; /* Allow multiple indicators to wrap */
    gap: 10px;
}

.typing-indicator span {
    display: inline-block;
    margin-right: 5px;
}

.typing-indicator .dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #888;
    animation: typingPulse 1.4s infinite ease-in-out;
}

.typing-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingPulse {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}


.chat-input-area {
    display: flex;
    gap: 10px;
}

.chat-input-area input[type="text"] {
    flex-grow: 1;
    padding: 12px 15px;
    border-radius: 25px;
    border: 1px solid var(--vampire-red);
    background-color: #1a1a1a;
    color: var(--pale-white);
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.chat-input-area input[type="text"]:focus {
    border-color: var(--blood-red);
    box-shadow: 0 0 8px rgba(var(--blood-red), 0.5);
}

.chat-input-area button {
    padding: 12px 25px;
    border-radius: 25px;
    background-color: var(--vampire-red);
    color: var(--pale-white);
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap; /* Keep button text on one line */
}

.chat-input-area button:hover {
    background-color: var(--blood-red);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .chat-container {
        flex-direction: column;
        gap: 20px;
    }

    .chat-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(var(--vampire-red), 0.2);
    }

    .chat-log {
        max-height: 300px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 480px) {
    #coven-chat h2 {
        font-size: 2em;
    }

    .chat-input-area {
        flex-direction: column;
    }

    .chat-input-area button {
        width: 100%;
        margin-top: 10px;
    }
}

/* Basic font styling for a more 'gothic' feel */
body, input, button {
    font-family: 'specialelite', monospace; 
}