/* ---
   style.css
   Unified Stylesheet for Hollow Tags Website
   --- */

:root {
    --primary-color-orange: #ff7f00;
    --secondary-color-orange: #ff9500;
    --tertiary-color-orange: #ffb300;
    --primary-color-blue-purple: #6a0dad;
    --secondary-color-blue-purple: #007bff;
    --tertiary-color-blue-purple: #8a2be2;
    --quaternary-color-blue-purple: #0099ff;
}

/* --- FONT FACE --- */
@font-face {
    font-family: 'Newyear Coffee';
    src: url('../assets/fonts/Newyear Coffee.otf') format('opentype'),
         url('../assets/fonts/Newyear Coffee.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- GLOBAL STYLES & RESETS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background: #1e1e1e; 
    color: white;
    overflow-x: hidden;
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
}

main {
    flex-grow: 1; 
}


.body-with-bg {
    position: relative;
}

.body-with-bg::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-image: url('../images/Logo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    opacity: 0.1; 
    transform: scale(1.1);
}

.body-with-bg::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #1e1e1e;
    z-index: -1;
    opacity: 0.95;
}


b, strong {
    font-weight: 600;
}

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

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color-orange), var(--secondary-color-orange));
    border-radius: 10px;
    border: 2px solid #111;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff9500, #ffb300);
}


/* --- NAVIGATION HEADER --- */
/* This placeholder is where the header is injected */
#header-placeholder {
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
}

.navigationHeader {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgba(255, 127, 0, 0.2);
}

.navigationHeader.scrolled {
    height: 80px;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.hollowTagsImage {
    height: 70px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 12px rgba(255, 127, 0, 0.4));
    cursor: pointer;
}

.hollowTagsImage:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(255, 127, 0, 0.6));
}

.headerButtons {
    display: flex;
    gap: 20px;
}

.header-button {
    background: linear-gradient(135deg, #ff7f00, #ff9500);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.2);
    text-decoration: none;
}

.header-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.4);
    background: linear-gradient(135deg, #ff9500, #ffb300);
}

.header-button.active {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 4px 15px rgba(255, 127, 0, 0.4);
    background: linear-gradient(135deg, #ff9500, #ffb300);
    transform: translateY(-2px);
}

.header-button:active {
    transform: translateY(0);
}

.headerSocialButtons {
    display: flex;
    gap: 15px;
}

.header-social-button {
    background: linear-gradient(135deg, #ff7f00, #ff9500);
    color: white;
    font-size: 20px;
    height: 50px;
    width: 50px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.2);
}

.header-social-button:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.4);
}

/* --- PAGE SECTIONS (INDEX.HTML) --- */
main { 
    z-index: 1; 
    position: relative;
    padding-top: 100px; /* Offset for fixed header */
}
section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

/* Specific section top padding adjustments */
.home { padding-top: 0; }
main.page-content { padding-top: 0; }
.text-page-section { padding-top: 4rem; }

/* --- Home Section --- */
.home {
    background-image: url('../images/Logo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    min-height: 100vh; /* Ensure it takes full viewport height */
    margin-top: -100px; /* Counteract main's padding-top */
}

.home-background-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}

.home-header {
    font-size: clamp(60px, 8vw, 120px);
    font-family: 'Newyear Coffee', sans-serif;
    color: white;
    text-shadow: 0 0 30px rgba(255, 127, 0, 0.7), 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(255, 127, 0, 0.7), 2px 2px 10px rgba(0, 0, 0, 0.8); }
    to { text-shadow: 0 0 45px rgba(255, 127, 0, 0.9), 2px 2px 15px rgba(0, 0, 0, 0.8); }
}

.monke-button {
    font-size: 20px;
    font-weight: bold;
    padding: 15px 35px;
    background: linear-gradient(135deg, #ff7f00, #ff4500);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 127, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.monke-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 127, 0, 0.6);
}

/* --- Connect Section --- */
.connect-with-us {
    background: linear-gradient(135deg, #2c1810, #1e1e1e);
    text-align: center;
}

.connect-with-us-header {
    font-size: clamp(50px, 6vw, 100px);
    font-family: 'Newyear Coffee', sans-serif;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
}

.header-social-button-connect-with-us-connect {
    background: linear-gradient(135deg, #ff5100, #ff2d2d);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 81, 0, 0.4);
    margin-bottom: 30px;
}

.header-social-button-connect-with-us-connect:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.6);
}

.header-social-buttons-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.header-social-button-connect-with-us {
    background: #ffcc00; /* Yellow base */
    color: #333;
    font-size: 28px;
    height: 90px;
    width: 90px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    transform: rotate(-3deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 255, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-social-button-connect-with-us::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 6px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5100, #ff7f00);
    border-radius: 20px;
    z-index: -1;
    transform: rotate(6deg);
}

.header-social-button-connect-with-us:hover {
    transform: rotate(0deg) translateY(-5px) scale(1.05);
    animation: wiggle 0.6s ease;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg) translateY(-5px) scale(1.05); }
    25% { transform: rotate(2deg) translateY(-5px) scale(1.05); }
    75% { transform: rotate(-2deg) translateY(-5px) scale(1.05); }
}

/* --- Features Section --- */
.features {
    background: #111;
}

.features-header {
    font-size: clamp(50px, 6vw, 100px);
    font-family: 'Newyear Coffee', sans-serif;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    margin-bottom: 50px;
    text-align: center;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 127, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 127, 0, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 3rem;
    color: #ff7f00;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

body.theme-blue-purple .feature-card {
    border: 1px solid rgba(106, 13, 173, 0.2);
}

body.theme-blue-purple .feature-card:hover {
    border-color: rgba(106, 13, 173, 0.5);
}

body.theme-blue-purple .feature-icon {
    color: #6a0dad;
}

/* --- FAQ Section --- */
.faq {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
}

.faq-header {
    font-size: clamp(50px, 6vw, 100px);
    font-family: 'Newyear Coffee', sans-serif;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    margin-bottom: 50px;
    text-align: center;
}

.faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 127, 0, 0.2);
    border-radius: 15px;
    margin: 20px 0;
    padding: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(255, 127, 0, 0.5);
    transform: translateY(-3px);
}

.faq-item.open {
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.15), rgba(255, 127, 0, 0.05));
    border-color: rgba(255, 127, 0, 0.6);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 0;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    margin-top: 20px;
}

.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
    color: #ff7f00;
    font-weight: bold;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

/* --- Play Now Section --- */
.play-now {
    background: #111;
    text-align: center;
}

.play-now h1 {
    font-size: clamp(60px, 8vw, 120px);
    font-family: 'Newyear Coffee', sans-serif;
    text-shadow: 0 0 40px rgba(255, 127, 0, 0.8);
    margin-bottom: 20px;
    animation: pulse 3s ease-in-out infinite;
}

.play-now h2 {
    font-size: clamp(20px, 3vw, 30px);
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

@keyframes pulse {
    50% { transform: scale(1.05); }
}

.meta-logo {
    height: 150px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    margin-bottom: 30px;
    cursor: pointer;
}

.meta-logo:hover {
    transform: translateY(-10px) scale(1.1);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
}

.extras h3 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* --- BLOG & CONTACT PAGE STYLES --- */
.page-header {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.2), transparent);
}
.page-title {
    font-size: clamp(40px, 5vw, 80px);
    font-family: 'Newyear Coffee', sans-serif;
    margin-bottom: 1rem;
}
.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* --- New Blog Page Design --- */
.blogs { min-height: auto; }
.blogs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.blog-preview {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 127, 0, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
}
.blog-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 127, 0, 0.2);
    border-color: rgba(255, 127, 0, 0.5);
}
.blog-preview:hover .blog-image {
    transform: scale(1.1);
}

.blog-image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.blog-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}
.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-info {
    padding: 20px;
    text-align: left;
    margin-top: auto; /* Pushes content to the bottom */
}
.blog-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}
.blog-meta {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff7f00;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* --- New Blog Popup Design --- */
.popup-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px);
    display: flex; justify-content: center; align-items: center;
    z-index: 2000; animation: fadeIn 0.3s ease; padding: 20px;
}
.popup-content {
    background: #1e1e1e; border-radius: 15px;
    color: white; width: 100%; max-width: 900px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.4s ease;
    border: 1px solid rgba(255, 127, 0, 0.3);
    position: relative; max-height: 90vh; overflow-y: auto;
    display: flex; flex-direction: column;
}
.popup-header-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}
.popup-body {
    padding: 40px;
}
.close-popup {
    background: rgba(0,0,0,0.5); color: white; border: none;
    font-size: 1.5rem; cursor: pointer; line-height: 1;
    transition: all 0.3s ease; position: absolute; top: 15px; right: 15px;
    width: 40px; height: 40px; border-radius: 50%;
}
.close-popup:hover { background: #ff7f00; transform: rotate(90deg); }
.popup-body h1 { font-size: 2.2rem; margin-bottom: 10px; }
.popup-meta { color: #aaa; margin-bottom: 30px; }
.field {
    background: rgba(255,255,255,0.05);
    margin-bottom: 20px;
    padding: 20px;
    border-left: 4px solid #ff7f00;
    border-radius: 8px;
}
.field h2 { font-size: 1.4rem; font-weight: 600; margin-bottom: 5px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateY(-30px) scale(0.98); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }


/* --- New Contact Page Design --- */
.contact { min-height: auto; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}
@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr 1fr;
    }
}
.contact-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255, 127, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 127, 0, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.contact-card.large {
    grid-column: 1 / -1; /* Spans full width on medium screens */
}
@media (min-width: 1024px) {
    .contact-card.large {
        grid-column: 2 / 3; /* Center column on large screens */
    }
}
.contact-icon {
    font-size: 2.5rem;
    color: #ff7f00;
    background: rgba(255, 127, 0, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.contact-details p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}
.contact-link {
    color: #ff9500;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.contact-link:hover {
    color: #ffb300;
    text-decoration: underline;
}
.discord-join-button {
    background: #5865F2;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}
.discord-join-button:hover {
    background: #4a56d4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}
.discord-widget-container {
    width: 100%;
    max-width: 350px;
    margin-top: auto;
}


/* --- Text Content Pages (Privacy Policy, etc.) --- */
.text-page-section {
    min-height: auto;
}
.text-content-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0,0,0,0.2);
    padding: 2rem 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 127, 0, 0.2);
    z-index: 5;
    position: relative;
}
.text-content-container h1 {
    font-family: 'Newyear Coffee', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ff7f00;
    text-align: center;
}
.text-content-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: white;
    border-bottom: 1px solid rgba(255, 127, 0, 0.2);
    padding-bottom: 0.5rem;
}
.text-content-container p, 
.text-content-container li {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.text-content-container a {
    color: #ff9500;
    text-decoration: none;
    font-weight: 500;
}
.text-content-container a:hover {
    text-decoration: underline;
}


/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .headerButtons {
        display: none;
    }
    .mobile-nav-button {
        display: flex;
    }
}

.mobile-nav-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7f00, #ff9500);
    border-radius: 12px;
    cursor: pointer;
    font-size: 20px;
    color: white;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-close-button {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.mobile-nav .header-button {
    margin: 1rem 0;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .navigationHeader {
        height: 80px;
        padding: 0 1rem;
    }
    .hollowTagsImage {
        height: 50px;
    }
    section {
        padding: 1rem;
    }
    .contact-grid {
        padding: 1rem;
    }
    main {
        padding-top: 80px;
    }
    .home {
        margin-top: -80px;
    }
}

@media (max-width: 480px) {
    .headerSocialButtons {
        gap: 10px;
    }
    .header-social-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .monke-button {
        font-size: 16px;
        padding: 12px 25px;
    }
    .header-social-button-connect-with-us {
        height: 70px;
        width: 70px;
        font-size: 24px;
    }
    .faq-item {
        padding: 20px;
    }
    .faq-question {
        font-size: 18px;
    }
    .popup-body {
        padding: 20px;
    }
    .text-content-container {
        padding: 1.5rem;
    }
}


/* --- SITE FOOTER --- */
.site-footer {
    background-color: #111;
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 2rem;
    border-top: 2px solid rgba(255, 127, 0, 0.5);
    margin-top: auto; /* Push footer to bottom */
    position: relative;
    z-index: 5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-about .footer-logo {
    height: 80px;
    margin-bottom: 15px;
}

.footer-about .footer-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 250px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #ff7f00;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff7f00;
    transform: translateX(5px);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    color: #ff7f00;
    transform: translateY(-3px);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 127, 0, 0.2);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive styles for footer */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .footer-about .footer-tagline {
        margin: 0 auto;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-social-icons {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --- THEME SWITCHER --- */
.theme-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #6a0dad, #ff7f00);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.theme-switcher:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

body.theme-blue-purple ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color-blue-purple), var(--secondary-color-blue-purple));
}

body.theme-blue-purple ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8a2be2, #0099ff);
}

body.theme-blue-purple .navigationHeader {
    border-bottom: 1px solid rgba(106, 13, 173, 0.2);
}

body.theme-blue-purple .hollowTagsImage {
    filter: drop-shadow(0 4px 12px rgba(106, 13, 173, 0.4));
}

body.theme-blue-purple .hollowTagsImage:hover {
    filter: drop-shadow(0 8px 20px rgba(106, 13, 173, 0.6));
}

body.theme-blue-purple .header-button {
    background: linear-gradient(135deg, #6a0dad, #007bff);
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.2);
}

body.theme-blue-purple .header-button:hover {
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
    background: linear-gradient(135deg, #8a2be2, #0099ff);
}

body.theme-blue-purple .header-button.active {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 4px 15px rgba(106, 13, 173, 0.4);
    background: linear-gradient(135deg, #8a2be2, #0099ff);
}

body.theme-blue-purple .header-social-button {
    background: linear-gradient(135deg, #6a0dad, #007bff);
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.2);
}

/* Theme Styles */
body.theme-blue-purple .header-social-button:hover {
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
}

body.theme-blue-purple .home-header {
    animation: theme-blue-purple-glow 2s ease-in-out infinite alternate;
}

@keyframes theme-blue-purple-glow {
    0% {
        text-shadow: 0 0 30px rgba(106, 13, 173, 0.7), 2px 2px 10px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 0 0 45px rgba(106, 13, 173, 0.9), 2px 2px 15px rgba(0, 0, 0, 0.8);
    }
}

body.theme-blue-purple .monke-button {
    background: linear-gradient(135deg, #6a0dad, #007bff);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.4);
}

body.theme-blue-purple .monke-button:hover {
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.6);
}

body.theme-blue-purple .connect-with-us {
    background: linear-gradient(135deg, #2c1810, #1e1e1e);
}

body.theme-blue-purple .header-social-button-connect-with-us-connect {
    background: linear-gradient(135deg, #6a0dad, #007bff);
    box-shadow: 0 6px 20px rgba(106, 13, 173, 0.4);
}

body.theme-blue-purple .header-social-button-connect-with-us-connect:hover {
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.6);
}

body.theme-blue-purple .header-social-button-connect-with-us::before {
    background: linear-gradient(135deg, #6a0dad, #007bff);
}

body.theme-blue-purple .faq-item {
    border: 1px solid rgba(106, 13, 173, 0.2);
}

body.theme-blue-purple .faq-item:hover {
    border-color: rgba(106, 13, 173, 0.5);
}

body.theme-blue-purple .faq-item.open {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.15), rgba(106, 13, 173, 0.05));
    border-color: rgba(106, 13, 173, 0.6);
}

body.theme-blue-purple .faq-arrow {
    color: #6a0dad;
}

body.theme-blue-purple .play-now h1 {
    text-shadow: 0 0 40px rgba(106, 13, 173, 0.8);
}

body.theme-blue-purple .blog-preview {
    border: 1px solid rgba(106, 13, 173, 0.2);
}

body.theme-blue-purple .blog-preview:hover {
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.2);
    border-color: rgba(106, 13, 173, 0.5);
}

body.theme-blue-purple .new-badge {
    background: #6a0dad;
}

body.theme-blue-purple .popup-content {
    border: 1px solid rgba(106, 13, 173, 0.3);
}

body.theme-blue-purple .close-popup:hover {
    background: #6a0dad;
}

body.theme-blue-purple .field {
    border-left: 4px solid #6a0dad;
}

body.theme-blue-purple .contact-card {
    border: 1px solid rgba(106, 13, 173, 0.2);
}

body.theme-blue-purple .contact-card:hover {
    border-color: rgba(106, 13, 173, 0.5);
}

body.theme-blue-purple .contact-icon {
    color: #6a0dad;
    background: rgba(106, 13, 173, 0.1);
}

body.theme-blue-purple .contact-link {
    color: #8a2be2;
}

body.theme-blue-purple .contact-link:hover {
    color: #0099ff;
}

body.theme-blue-purple .text-content-container {
    border: 1px solid rgba(106, 13, 173, 0.2);
}

body.theme-blue-purple .text-content-container h1 {
    color: #6a0dad;
}

body.theme-blue-purple .text-content-container h2 {
    border-bottom: 1px solid rgba(106, 13, 173, 0.2);
}

body.theme-blue-purple .text-content-container a {
    color: #8a2be2;
}

body.theme-blue-purple .mobile-nav-button {
    background: linear-gradient(135deg, #6a0dad, #007bff);
}

body.theme-blue-purple .site-footer {
    border-top: 2px solid rgba(106, 13, 173, 0.5);
}

body.theme-blue-purple .footer-heading::after {
    background-color: #6a0dad;
}

body.theme-blue-purple .footer-link:hover {
    color: #6a0dad;
}

body.theme-blue-purple .footer-social-icon:hover {
    color: #6a0dad;
}

body.theme-blue-purple .footer-divider {
    background: rgba(106, 13, 173, 0.2);
}

body.theme-orange .navigationHeader {
    background: linear-gradient(135deg, #ff7f00, #ff4500);
}

body.theme-orange .header-button {
    background: linear-gradient(135deg, #ff7f00, #ff9500);
}

body.theme-orange .header-button:hover {
    background: linear-gradient(135deg, #ff9500, #ffb300);
}

body.theme-orange .header-social-button {
    background: linear-gradient(135deg, #ff7f00, #ff9500);
}

body.theme-orange .monke-button {
    background: linear-gradient(135deg, #ff7f00, #ff4500);
}

body.theme-orange .header-social-button-connect-with-us-connect {
    background: linear-gradient(135deg, #ff5100, #ff2d2d);
}

body.theme-orange .header-social-button-connect-with-us::before {
    background: linear-gradient(135deg, #ff5100, #ff7f00);
}

body.theme-orange .faq-arrow {
    color: #ff7f00;
}

body.theme-orange .play-now h1 {
    text-shadow: 0 0 40px rgba(255, 127, 0, 0.8);
}

body.theme-orange .new-badge {
    background: #ff7f00;
}

body.theme-orange .close-popup:hover {
    background: #ff7f00;
}

body.theme-orange .field {
    border-left: 4px solid #ff7f00;
}

body.theme-orange .contact-icon {
    color: #ff7f00;
    background: rgba(255, 127, 0, 0.1);
}

body.theme-orange .contact-link {
    color: #ff9500;
}

body.theme-orange .contact-link:hover {
    color: #ffb300;
}

body.theme-orange .text-content-container h1 {
    color: #ff7f00;
}

body.theme-orange .text-content-container a {
    color: #ff9500;
}

body.theme-orange .mobile-nav-button {
    background: linear-gradient(135deg, #ff7f00, #ff9500);
}

body.theme-orange .site-footer {
    border-top: 2px solid rgba(255, 127, 0, 0.5);
}

body.theme-orange .footer-heading::after {
    background-color: #ff7f00;
}

body.theme-orange .footer-link:hover {
    color: #ff7f00;
}

body.theme-orange .footer-social-icon:hover {
    color: #ff7f00;
}

body.theme-orange .footer-divider {
    background: rgba(255, 127, 0, 0.2);
}