:root {
    --primary-background: #FFFFFF;
    --secondary-background: #F9FAFB;
    --accent-color: #D4AF37;
    --primary-text-light-bg: #1F2937;
    --secondary-text-light-bg: #4B5563;
    --border-color: #E5E7EB;
    --surface-color: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--primary-background);
    color: var(--primary-text-light-bg);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    text-align: right;
}

.text-muted {
    color: var(--secondary-text-light-bg) !important;
}

* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn-primary-custom {
    background-color: #1F2937;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--accent-color);
}

.editorial-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* ===== header ===== */
.newsphoria-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    z-index: 1050;
}

.newsphoria-header .navbar {
    padding: 0.75rem 0;
}

.newsphoria-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.newsphoria-header .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #1F2937;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.newsphoria-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #4B5563;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.newsphoria-header .nav-link:hover,
.newsphoria-header .nav-link.active {
    color: #D4AF37;
}

.newsphoria-header .dropdown-menu {
    background-color: #FFFFFF;
    padding: 0.5rem 0;
    border-radius: 4px;
}

.newsphoria-header .dropdown-item {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #4B5563;
    text-align: right;
    padding: 0.6rem 1.5rem;
    transition: background 0.3s, color 0.3s;
}

.newsphoria-header .dropdown-item:hover {
    background-color: #F9FAFB;
    color: #D4AF37;
}

.newsphoria-header .nav-email {
    color: #4B5563;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.newsphoria-header .nav-email:hover {
    color: #D4AF37;
}

.newsphoria-header .btn-contact {
    background-color: #1F2937;
    color: #FFFFFF;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.newsphoria-header .btn-contact:hover {
    background-color: #D4AF37;
    color: #FFFFFF;
}

.newsphoria-header .navbar-toggler {
    font-size: 1.5rem;
    color: #1F2937;
}

@media (min-width: 992px) {
    .newsphoria-header .navbar > .container > .d-flex {
        width: auto !important;
    }
}

@media (max-width: 991.98px) {
    .newsphoria-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 0;
        border-top: 1px solid #E5E7EB;
        margin-top: 0.5rem;
    }

    .newsphoria-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #F3F4F6;
    }

    .newsphoria-header .dropdown-menu {
        border: none;
        shadow: none;
        padding-right: 1rem;
    }

    .newsphoria-header .btn-contact {
        margin-top: 1.5rem;
        width: 100%;
    }
}

/* ===== hero ===== */
.newsphoria-hero {
    padding: 60px 0;
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    direction: rtl;
}

.newsphoria-main-card {
    height: 650px;
    border-radius: 4px;
    background-color: #1F2937;
    position: relative;
}

.newsphoria-side-card {
    height: 313px;
    border-radius: 4px;
    background-color: #1F2937;
    position: relative;
}

.newsphoria-main-img,
.newsphoria-side-img {
    object-fit: cover;
    transition: transform 0.6s ease;
}

.newsphoria-main-card:hover .newsphoria-main-img,
.newsphoria-side-card:hover .newsphoria-side-img {
    transform: scale(1.05);
}

.newsphoria-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.newsphoria-category {
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.newsphoria-main-title {
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    max-width: 90%;
}

.newsphoria-side-title {
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.newsphoria-excerpt {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 80%;
}

.newsphoria-btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #D4AF37;
    color: #1F2937;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
}

.newsphoria-btn:hover {
    background-color: #FFFFFF;
    color: #1F2937;
}

.newsphoria-btn-small {
    display: inline-block;
    padding: 8px 20px;
    border-bottom: 2px solid #D4AF37;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.newsphoria-btn-small:hover {
    color: #D4AF37;
}

@media (max-width: 991px) {
    .newsphoria-main-card {
        height: 450px;
    }

    .newsphoria-main-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .newsphoria-hero {
        padding: 30px 0;
    }

    .newsphoria-main-card {
        height: 350px;
    }

    .newsphoria-main-title {
        font-size: 1.125rem;
    }

    .newsphoria-side-title {
        font-size: 1rem;
    }

    .newsphoria-side-card {
        height: 280px;
    }
}

/* ===== news-grid ===== */
.news-grid-section {
    background-color: #FFFFFF;
    overflow: hidden;
}

.news-grid-section .grid-main-title {
    font-family: 'Playfair Display', serif;
    color: #1F2937;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.news-grid-section .title-accent {
    width: 60px;
    height: 3px;
    background-color: #D4AF37;
}

.news-grid-section .filter-btn {
    background: transparent;
    border: 1px solid #E5E7EB;
    color: #4B5563;
    padding: 8px 24px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border-radius: 0;
}

.news-grid-section .filter-btn:hover,
.news-grid-section .filter-btn.active {
    background-color: #1F2937;
    color: #FFFFFF;
    border-color: #1F2937;
}

.news-grid-section .news-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-grid-section .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.news-grid-section .news-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-grid-section .news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-grid-section .news-card:hover .news-card-img {
    transform: scale(1.05);
}

.news-grid-section .news-category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: #FFFFFF;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.news-grid-section .news-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-grid-section .news-meta {
    font-size: 0.8rem;
    color: #D4AF37;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
    font-weight: 600;
}

.news-grid-section .news-meta i {
    margin-left: 5px;
}

.news-grid-section .news-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1F2937;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-grid-section .news-card-excerpt {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-grid-section .news-card-link {
    color: #1F2937;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.news-grid-section .news-card-link:hover {
    color: #D4AF37;
}

@media (max-width: 768px) {
    .news-grid-section .grid-main-title {
        font-size: 1.5rem;
    }

    .news-grid-section .filter-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

/* ===== article-cards ===== */
.newsphoria-articles {
    direction: rtl;
    overflow: hidden;
}

.newsphoria-subtitle {
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.newsphoria-title {
    font-family: 'Playfair Display', serif;
    color: #1F2937;
    font-weight: 700;
}

.newsphoria-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 5px 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #4B5563;
    transition: all 0.3s ease;
}

.newsphoria-tab-btn.active {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
}

.newsphoria-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.newsphoria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.newsphoria-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
}

.newsphoria-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.newsphoria-card:hover .newsphoria-card-img {
    transform: scale(1.05);
}

.newsphoria-card-meta {
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 600;
}

.newsphoria-card-title {
    color: #1F2937;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.newsphoria-card-link {
    color: #1F2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.newsphoria-card-link:hover {
    color: #D4AF37;
}

@media (max-width: 767px) {
    .newsphoria-title {
        font-size: 1.5rem;
    }

    .newsphoria-card-title {
        font-size: 1.15rem;
    }
}

/* ===== categories-sidebar ===== */
.newsphoria-sidebar {
    direction: rtl;
    font-family: 'Inter', sans-serif;
}

.newsphoria-sidebar .widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    border-bottom: 2px solid #D4AF37;
    display: inline-block;
    padding-bottom: 5px;
}

.newsphoria-sidebar .category-list {
    list-style: none;
}

.newsphoria-sidebar .category-item {
    border-bottom: 1px solid #E5E7EB;
}

.newsphoria-sidebar .category-link {
    padding: 12px 0;
    text-decoration: none;
    color: #4B5563;
    font-weight: 600;
    transition: color 0.3s ease;
}

.newsphoria-sidebar .category-link:hover {
    color: #D4AF37;
}

.newsphoria-sidebar .newsletter-widget {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
}

.newsphoria-sidebar .newsletter-icon {
    font-size: 2.5rem;
    color: #D4AF37;
}

.newsphoria-sidebar .newsletter-text {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.5;
}

.newsphoria-sidebar .newsletter-input {
    border-radius: 0;
    border: 1px solid #E5E7EB;
    padding: 12px;
    background-color: #FFFFFF;
    color: #1F2937;
}

.newsphoria-sidebar .newsletter-input::placeholder {
    color: #9CA3AF;
}

.bg-dark .form-control::placeholder,
.bg-dark input::placeholder,
.bg-dark textarea::placeholder,
.text-white.form-control::placeholder,
input.text-white::placeholder,
input.bg-transparent::placeholder {
    color: #adb5bd !important;
    opacity: 1 !important;
}

.newsphoria-sidebar .newsletter-btn {
    border-radius: 0;
    background-color: #1F2937;
    color: #FFFFFF;
    border: none;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.newsphoria-sidebar .newsletter-btn:hover {
    background-color: #D4AF37;
}

@media (max-width: 767px) {
    .newsphoria-sidebar .widget-title {
        font-size: 1.1rem;
    }
}

/* ===== footer ===== */
.newsphoria-footer {
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.newsphoria-footer .newsphoria-footer-title {
    font-family: 'Playfair Display', serif;
}

.newsphoria-footer .newsphoria-footer-links a,
.newsphoria-footer .newsphoria-footer-contact a {
    transition: color 0.3s ease;
}

.newsphoria-footer .newsphoria-footer-links a:hover,
.newsphoria-footer .newsphoria-footer-contact a:hover {
    color: #D4AF37 !important;
}

.newsphoria-footer i {
    font-size: 1.1rem;
    margin-left: 10px;
}

.newsphoria-footer .newsphoria-footer-map-container {
    border: 1px solid #4B5563;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.newsphoria-footer .newsphoria-footer-map-container:hover {
    filter: grayscale(0);
}

.newsphoria-footer .newsphoria-footer-bottom p {
    opacity: 0.8;
}

.newsphoria-footer-legal-links a:hover {
    text-decoration: underline !important;
    color: #D4AF37 !important;
}

@media (max-width: 768px) {
    .newsphoria-footer {
        text-align: center;
    }

    .newsphoria-footer .newsphoria-footer-contact p,
    .newsphoria-footer .newsphoria-footer-contact a {
        justify-content: center;
    }

    .newsphoria-footer i {
        margin-left: 5px;
        margin-right: 5px;
    }
}

/* ===== PAGE: privacy ===== */
.policy-document-wrapper { background-color: #FFFFFF; padding: 60px 0; min-height: 100vh; font-family: 'Inter', sans-serif; direction: rtl; } .policy-content-container { max-width: 900px; margin: 0 auto; padding: 0 20px; color: #1F2937; } .newsphoria-privacy-body h2 { font-family: 'Playfair Display', serif; color: #1F2937; font-size: 1.8rem; margin-top: 40px; margin-bottom: 20px; border-right: 4px solid #D4AF37; padding-right: 15px; font-weight: 700; line-height: 1.3; } .newsphoria-privacy-body p { font-size: 1rem; line-height: 1.8; color: #4B5563; margin-bottom: 20px; text-align: justify; } .newsphoria-privacy-body ul { list-style: none; padding-right: 20px; margin-bottom: 30px; } .newsphoria-privacy-body ul li { position: relative; padding-right: 25px; margin-bottom: 12px; color: #4B5563; line-height: 1.6; } .newsphoria-privacy-body ul li::before { content: '\eb7e'; font-family: 'remixicon'; position: absolute; right: 0; color: #D4AF37; font-size: 1.1rem; } .newsphoria-privacy-body strong { color: #1F2937; font-weight: 600; } .newsphoria-privacy-body a { color: #D4AF37; text-decoration: none; transition: color 0.3s ease; border-bottom: 1px solid transparent; } .newsphoria-privacy-body a:hover { color: #1F2937; border-bottom-color: #1F2937; } @media (max-width: 768px) { .policy-document-wrapper { padding: 40px 0; } .newsphoria-privacy-body h2 { font-size: 1.4rem; margin-top: 30px; } .newsphoria-privacy-body p { font-size: 0.95rem; line-height: 1.7; } }

/* ===== PAGE: terms ===== */
.policy-document-wrapper{padding:60px 20px;background-color:#FFFFFF;direction:rtl;text-align:right}.policy-content-container{max-width:850px;margin:0 auto;color:#1F2937;font-family:'Inter',sans-serif;line-height:1.8}.policy-content-container h1{font-family:'Playfair Display',serif;font-size:2.5rem;color:#1F2937;margin-bottom:1rem;font-weight:900;border-bottom:3px solid #D4AF37;padding-bottom:15px;text-align:center}.policy-content-container .last-updated-date{color:#D4AF37;font-weight:600;margin-bottom:3rem;text-align:center;text-transform:uppercase;letter-spacing:0.05em}.policy-content-container h2{font-family:'Playfair Display',serif;font-size:1.8rem;color:#1F2937;margin-top:2.5rem;margin-bottom:1.2rem;font-weight:700;position:relative;padding-right:15px}.policy-content-container h2::before{content:'';position:absolute;right:0;top:20%;width:4px;height:60%;background-color:#D4AF37}.policy-content-container p{font-size:1.1rem;margin-bottom:1.5rem;color:#4B5563;hyphens:auto}.policy-content-container ul{margin-bottom:1.5rem;padding-right:1.5rem;list-style-type:none}.policy-content-container ul li{margin-bottom:0.8rem;position:relative;padding-right:25px;font-size:1.05rem;color:#4B5563}.policy-content-container ul li::before{content:'\eb7a';font-family:'remixicon';position:absolute;right:0;top:0;color:#D4AF37;font-size:1.2rem}.policy-content-container a{color:#D4AF37;text-decoration:none;font-weight:600;transition:color 0.3s ease}.policy-content-container a:hover{color:#1F2937;text-decoration:underline}@media(max-width:768px){.policy-document-wrapper{padding:40px 15px}.policy-content-container h1{font-size:1.5rem}.policy-content-container h2{font-size:1.2rem}.policy-content-container p,.policy-content-container ul li{font-size:1rem}}

/* ===== PAGE: disclaimer ===== */
.policy-document-wrapper {
  padding: 80px 0;
  background-color: #FFFFFF;
  direction: rtl;
}

.policy-content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer-body {
  color: #1F2937;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}

.disclaimer-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1F2937;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  border-right: 4px solid #D4AF37;
  padding-right: 15px;
}

.disclaimer-body p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #4B5563;
  text-align: justify;
}

.disclaimer-body ul {
  margin-bottom: 1.5rem;
  padding-right: 25px;
  list-style-type: square;
  color: #D4AF37;
}

.disclaimer-body li {
  margin-bottom: 0.8rem;
  color: #4B5563;
}

.disclaimer-link {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.disclaimer-link:hover {
  color: #1F2937;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-document-wrapper {
    padding: 40px 0;
  }
  .disclaimer-body h2 {
    font-size: 1.5rem;
  }
  .disclaimer-body p {
    font-size: 1rem;
  }
}

/* ===== PAGE: cookies ===== */
.policy-document-wrapper { background-color: #FFFFFF; padding: 60px 0; direction: rtl; } .policy-content-container { max-width: 900px; margin: 0 auto; color: #1F2937; padding: 0 20px; } .cookies-policy-article .policy-header { margin-bottom: 40px; border-bottom: 2px solid #E5E7EB; padding-bottom: 20px; } .cookies-policy-article h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #1F2937; margin-bottom: 15px; font-weight: 700; } .cookies-policy-article .lead { font-family: 'Inter', sans-serif; font-size: 1.1rem; color: #4B5563; line-height: 1.6; } .cookies-policy-article h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1F2937; margin-top: 35px; margin-bottom: 20px; position: relative; padding-right: 15px; } .cookies-policy-article h2::before { content: ''; position: absolute; right: 0; top: 5px; bottom: 5px; width: 4px; background-color: #D4AF37; } .cookies-policy-article p { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.8; color: #4B5563; margin-bottom: 20px; text-align: justify; } .cookies-policy-article ul { list-style: none; padding-right: 0; margin-bottom: 25px; } .cookies-policy-article ul li { position: relative; padding-right: 25px; margin-bottom: 12px; font-family: 'Inter', sans-serif; color: #4B5563; } .cookies-policy-article ul li::before { content: '\eb7e'; font-family: 'remixicon'; position: absolute; right: 0; color: #D4AF37; font-size: 1.1rem; } .cookie-table-wrapper { overflow-x: auto; margin: 30px 0; border: 1px solid #E5E7EB; border-radius: 4px; } .cookie-table { width: 100%; border-collapse: collapse; min-width: 500px; } .cookie-table th, .cookie-table td { padding: 15px; text-align: right; border-bottom: 1px solid #E5E7EB; font-family: 'Inter', sans-serif; } .cookie-table th { background-color: #F9FAFB; color: #1F2937; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; } .cookie-table td { color: #4B5563; font-size: 0.95rem; } .policy-link { color: #D4AF37; text-decoration: none; font-weight: 600; transition: color 0.3s ease; } .policy-link:hover { color: #1F2937; text-decoration: underline; } @media (max-width: 768px) { .cookies-policy-article h1 { font-size: 1.8rem; } .cookies-policy-article h2 { font-size: 1.3rem; } .policy-document-wrapper { padding: 40px 0; } }

/* ===== PAGE: music ===== */
.newsphoria-music-page {
  background-color: #FFFFFF;
  direction: rtl;
}
.newsphoria-music-page .text-accent {
  color: #D4AF37 !important;
}
.newsphoria-music-page .bg-gold-soft {
  background-color: rgba(212, 175, 55, 0.1);
}
.newsphoria-music-page .display-4 {
  font-family: 'Playfair Display', serif;
  color: #1F2937;
}
.newsphoria-music-page .subscription-card {
  border-radius: 0;
  border: 1px solid #E5E7EB;
}
.newsphoria-music-page .js-input-email {
  border-radius: 0;
  border: 1px solid #E5E7EB;
  font-family: 'Inter', sans-serif;
  background-color: #F9FAFB;
}
.newsphoria-music-page .js-input-email::placeholder {
  color: #9CA3AF;
}
.newsphoria-music-page .news-card {
  transition: box-shadow 0.3s ease;
  border-radius: 0;
  overflow: hidden;
}
.newsphoria-music-page .news-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}
.newsphoria-music-page .news-card-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.newsphoria-music-page .news-card:hover .news-card-img {
  transform: scale(1.05);
}
.newsphoria-music-page .news-card-title a {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.newsphoria-music-page .news-card-title a:hover {
  color: #D4AF37 !important;
}
.newsphoria-music-page .btn-dark {
  background-color: #1F2937;
  border-color: #1F2937;
  border-radius: 0;
  transition: all 0.3s ease;
}
.newsphoria-music-page .btn-dark:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .newsphoria-music-page .display-4 {
    font-size: 2rem;
  }
  .newsphoria-music-page .news-card-img {
    height: 200px;
  }
}

/* ===== PAGE: film-and-tv ===== */
.category-content { direction: rtl; background-color: #FFFFFF; font-family: 'Inter', sans-serif; } .category-content .newsletter-header { border: 1px solid #E5E7EB; border-top: 4px solid #D4AF37; } .category-content h2, .category-content h3 { font-family: 'Playfair Display', serif; color: #1F2937; } .category-content .bg-accent { background-color: #D4AF37 !important; color: #FFFFFF; font-weight: 600; } .category-content .category-card { transition: transform 0.3s ease; border-radius: 0; background: #FFFFFF; } .category-content .category-card:hover { transform: translateY(-5px); } .category-content .js-zoom-img { transition: transform 0.5s ease; } .category-content .category-card:hover .js-zoom-img { transform: scale(1.05); } .category-content .form-control:focus { border-color: #D4AF37; box-shadow: none; } .category-content .btn-outline-dark { border-width: 2px; font-weight: 600; border-radius: 0; } .category-content .btn-dark { background-color: #1F2937; border: none; border-radius: 0; } .category-content .btn-dark:hover { background-color: #D4AF37; color: #FFFFFF; }

/* ===== PAGE: social-gossip ===== */
.sg-category-section { border-bottom: 1px solid #e5e7eb; }.sg-newsletter-card { background-color: #f9fafb; border: 1px solid #e5e7eb !important; }.sg-category-title { font-family: 'Playfair Display', serif; color: #1f2937; font-weight: 700; }.sg-category-subtitle { color: #4b5563; font-family: 'Inter', sans-serif; }.sg-input { border-radius: 0; padding: 0.75rem 1rem; border: 1px solid #e5e7eb; color: #1f2937; }.sg-input::placeholder { color: #9ca3af; }.sg-btn-primary { background-color: #1f2937; color: #ffffff; border-radius: 0; font-weight: 600; transition: background-color 0.3s ease; border: none; }.sg-btn-primary:hover { background-color: #d4af37; color: #ffffff; }.sg-card { background: #ffffff; border: 1px solid #e5e7eb; transition: box-shadow 0.3s ease; position: relative; }.sg-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }.sg-card-img-wrapper { aspect-ratio: 4/5; overflow: hidden; }.sg-card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }.sg-card:hover .sg-card-img-wrapper img { transform: scale(1.05); }.sg-card-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #1f2937; line-height: 1.3; }.sg-meta { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: #d4af37; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }.sg-link-more { color: #1f2937; text-decoration: none; font-weight: 600; font-size: 0.9rem; position: relative; display: inline-flex; align-items: center; }.sg-link-more::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -2px; left: 0; background: #d4af37; transition: width 0.3s; }.sg-link-more:hover::after { width: 100%; }.sg-link-more:hover { color: #d4af37; }

/* ===== PAGE: career-and-achievements ===== */
.career-category-subscription .career-sub-card{background:#1F2937;color:#FFFFFF;border-radius:0;border:1px solid #D4AF37}.career-category-subscription .career-sub-title{font-family:'Playfair Display',serif;color:#D4AF37;font-size:2rem}.career-category-subscription .career-sub-text{font-family:'Inter',sans-serif;color:#D1D5DB}.career-category-subscription .career-input-field{border-radius:0;padding:0.75rem;border:1px solid #4B5563;background:#FFFFFF;color:#1F2937}.career-category-subscription .career-input-field::placeholder{color:#9CA3AF}.career-category-subscription .career-btn-primary{background:#D4AF37;color:#1F2937;border:none;border-radius:0;font-weight:600;transition:background 0.3s ease}.career-category-subscription .career-btn-primary:hover{background:#c09d2e;color:#1F2937}.career-news-grid .section-main-heading{font-family:'Playfair Display',serif;font-size:2.5rem;color:#1F2937;margin-bottom:1rem}.career-news-grid .heading-divider{width:80px;height:3px;background:#D4AF37;margin-bottom:2rem}.career-news-grid .career-card{border:none;border-radius:0;background:#FFFFFF;transition:transform 0.3s ease,box-shadow 0.3s ease;overflow:hidden;position:relative;display:flex;flex-direction:column}.career-news-grid .career-card:hover{transform:translateY(-5px);box-shadow:0 10px 20px rgba(0,0,0,0.1) !important}.career-news-grid .career-card-img-wrap{aspect-ratio:4/5;overflow:hidden}.career-news-grid .career-card-img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}.career-news-grid .career-card:hover .career-card-img{transform:scale(1.05)}.career-news-grid .career-card-body{display:flex;flex-direction:column;flex-grow:1}.career-news-grid .career-meta{font-size:0.85rem;color:#D4AF37;font-family:'Inter',sans-serif;font-weight:600;text-transform:uppercase;letter-spacing:0.05em}.career-news-grid .career-card-title{font-family:'Playfair Display',serif;font-size:1.35rem;margin-bottom:1rem}.career-news-grid .career-card-title a{text-decoration:none;color:#1F2937;transition:color 0.3s ease}.career-news-grid .career-card-title a:hover{color:#D4AF37}.career-news-grid .career-card-excerpt{color:#4B5563;font-size:0.95rem;line-height:1.6;margin-bottom:0}.max-w-400{max-width:400px;width:100%}@media(max-width:767px){.career-news-grid .section-main-heading{font-size:1.8rem}.career-category-subscription .career-sub-title{font-size:1.5rem}}

/* ===== PAGE: about ===== */
.newsphoria-about-content { background-color: #FFFFFF; font-family: 'Inter', sans-serif; }
.newsphoria-about-content .editorial-heading { font-family: 'Playfair Display', serif; color: #1F2937; font-weight: 700; }
.newsphoria-about-content .body-text { color: #4B5563; line-height: 1.8; font-size: 1.1rem; }
.newsphoria-about-content .metadata-tag { color: #D4AF37; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.9rem; }
.newsphoria-about-content .about-image-wrapper { position: relative; overflow: hidden; border-radius: 8px; }
.newsphoria-about-content .about-image-wrapper img { transition: transform 0.5s ease; width: 100%; height: 500px; object-fit: cover; }
.newsphoria-about-content .about-image-wrapper:hover img { transform: scale(1.03); }
.newsphoria-about-content .stat-number { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #D4AF37; }
.newsphoria-about-content .stat-label { font-size: 0.85rem; color: #6B7280; font-weight: 600; }
.newsphoria-about-content .feature-card { transition: all 0.3s ease; background: #F9FAFB; border-color: #E5E7EB !important; }
.newsphoria-about-content .feature-card:hover { border-color: #D4AF37 !important; background: #FFFFFF; transform: translateY(-5px); }
.newsphoria-about-content .feature-icon { font-size: 2.5rem; color: #D4AF37; }
@media (max-width: 768px) {
  .newsphoria-about-content .about-image-wrapper img { height: 300px; }
  .newsphoria-about-content .editorial-heading { font-size: 1.5rem; }
  .newsphoria-about-content .body-text { font-size: 1rem; }
}

/* ===== PAGE: contact ===== */
.contact-section { background-color: #F9FAFB; direction: rtl; text-align: right; }
.contact-section .contact-info-card { background: #1F2937; color: #FFFFFF; border-radius: 4px; display: flex; flex-direction: column; }
.contact-section h1 { font-family: 'Playfair Display', serif; color: #FFFFFF; font-weight: 700; }
.contact-section .contact-form-container { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 4px; }
.contact-section .contact-icon-box { width: 48px; height: 48px; background: rgba(212, 175, 55, 0.1); color: #D4AF37; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; border-radius: 4px; flex-shrink: 0; }
.contact-section .form-control { border-radius: 0; border: 1px solid #E5E7EB; padding: 0.75rem 1rem; background-color: #FFFFFF; color: #1F2937; }
.contact-section .form-control:focus { border-color: #D4AF37; box-shadow: none; }
.contact-section .form-control::placeholder { color: #9CA3AF; opacity: 1; }
.contact-section .btn-primary { background-color: #1F2937; border-color: #1F2937; border-radius: 0; color: #FFFFFF; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.3s ease; }
.contact-section .btn-primary:hover { background-color: #D4AF37; border-color: #D4AF37; color: #1F2937; }
.contact-section .btn-social { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); color: #FFFFFF; text-decoration: none; transition: 0.3s; }
.contact-section .btn-social:hover { color: #D4AF37; border-color: #D4AF37; }
.contact-section .map-wrapper { min-height: 400px; border: 1px solid #E5E7EB; }
.contact-section .map-wrapper iframe { width: 100%; height: 400px; border: 0; filter: grayscale(1); }
.contact-section .form-label { color: #1F2937; }
.contact-section .text-muted { color: #D1D5DB !important; }
.contact-section h2, .contact-section h3 { font-family: 'Playfair Display', serif; color: #1F2937; }

.comment-container {
    padding: 24px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 0;
    object-fit: cover;
    border: 1px solid #E5E7EB;
}

.comment-author {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1F2937;
    font-size: 1.1rem;
}

.comment-date {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comment-body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 12px;
    font-size: 1rem;
}

.action-link {
    color: #1F2937;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.action-link:hover {
    color: #D4AF37;
}

.reply-container {
    padding: 16px 24px 16px 0;
    margin-right: 60px;
    border-right: 2px solid #D4AF37;
    background-color: #F9FAFB;
}

.reply-avatar {
    width: 45px;
    height: 45px;
    border-radius: 0;
    object-fit: cover;
    border: 1px solid #E5E7EB;
}

.reply-container .comment-author {
    font-size: 1rem;
}

.reply-container .comment-body {
    font-size: 0.95rem;
}


/* ===== PAGE TEMPLATE: music-list ===== */
.music-detail-page {
    background-color: #FFFFFF;
}

.music-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #FFFFFF;
}

.music-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.8s ease;
}

.music-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.music-hero .container {
    position: relative;
    z-index: 3;
}

.music-page-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.music-page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 400;
}

.badge-category {
    background-color: #D4AF37;
    color: #1F2937;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.music-meta {
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 1.5rem;
}

.meta-item {
    color: #4B5563;
    font-size: 0.9rem;
    font-weight: 600;
}

.meta-item i {
    color: #D4AF37;
    margin-left: 5px;
}

.music-article-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1F2937;
}

.music-article-body h2,
.music-article-body h3 {
    font-family: 'Playfair Display', serif;
    color: #1F2937;
    margin: 2rem 0 1rem;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author {
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.comment-date {
    font-size: 0.8rem;
    color: #9CA3AF;
}

.action-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #D4AF37;
}

.action-link:hover {
    color: #1F2937;
}

.btn-music-submit {
    background-color: #1F2937;
    color: #FFFFFF;
    border: none;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-music-submit:hover {
    background-color: #D4AF37;
}

.related-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

.related-link {
    font-weight: 600;
    color: #1F2937;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
}

.related-link:hover {
    color: #D4AF37;
}

.widget-title {
    font-family: 'Playfair Display', serif;
    border-right: 4px solid #D4AF37;
    padding-right: 15px;
}

.text-gold {
    color: #D4AF37;
}

.btn-gold {
    background-color: #D4AF37;
    color: #1F2937;
    font-weight: 700;
    border: none;
}

@media (max-width: 768px) {
    .music-page-title {
        font-size: 1.75rem;
    }

    .music-hero {
        height: 40vh;
    }
}

/* ===== PAGE TEMPLATE: film-and-tv-list ===== */
.detail-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(31, 41, 55, 0.9) 0%, rgba(31, 41, 55, 0.3) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 9;
}

.bg-accent {
    background-color: #D4AF37;
}

.text-accent {
    color: #D4AF37;
}

.display-4 {
    font-family: 'Playfair Display', serif;
}

.article-typography .rich-text-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4B5563;
}

.article-typography .rich-text-content p {
    margin-bottom: 1.5rem;
}

.article-typography .rich-text-content h2 {
    color: #1F2937;
    font-family: 'Playfair Display', serif;
    margin: 2rem 0 1rem;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.comment-author {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1F2937;
}

.comment-date {
    font-size: 0.8rem;
    color: #9CA3AF;
}

.action-link {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-primary-gold {
    background-color: #1F2937;
    color: #FFFFFF;
    border: none;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.btn-primary-gold:hover {
    background-color: #D4AF37;
    color: #FFFFFF;
}

.btn-accent {
    background-color: #D4AF37;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-accent:hover {
    opacity: 0.9;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.widget-title {
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .detail-hero {
        height: 40vh;
    }

    .display-4 {
        font-size: 1.75rem;
    }

    .rich-text-content {
        font-size: 1rem;
    }
}

/* ===== PAGE TEMPLATE: social-gossip-list ===== */
.gossip-detail-template .detail-hero {
    border-bottom: 2px solid #E5E7EB;
}

.gossip-detail-template .badge-category {
    display: inline-block;
    background-color: #D4AF37;
    color: #FFFFFF;
    padding: 4px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gossip-detail-template .display-4 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #1F2937;
}

.gossip-detail-template .hero-content-wrapper .display-4 {
    color: #FFFFFF !important;
}

.gossip-detail-template .meta-attr .label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #D4AF37;
    font-weight: 600;
}

.gossip-detail-template .meta-attr .value {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #4B5563;
}

.gossip-detail-template .article-full-text {
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    font-size: 1.125rem;
    line-height: 1.8;
}

.gossip-detail-template .article-full-text h2 {
    font-family: 'Playfair Display', serif;
    color: #1F2937 !important;
    font-weight: 700;
}

.gossip-detail-template .custom-list {
    list-style: none;
    padding-right: 0;
}

.gossip-detail-template .custom-list li {
    position: relative;
    padding-right: 1.5rem;
}

.gossip-detail-template .custom-list li::before {
    content: '\eb7e';
    font-family: 'remixicon';
    position: absolute;
    right: 0;
    color: #D4AF37;
}

.gossip-detail-template .comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.gossip-detail-template .comment-author {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1F2937;
}

.gossip-detail-template .comment-date {
    font-size: 0.8rem;
    color: #9CA3AF;
}

.gossip-detail-template .action-link {
    color: #4B5563;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.gossip-detail-template .action-link:hover {
    color: #D4AF37;
}

.gossip-detail-template .sidebar-sticky {
    position: sticky;
    top: 100px;
}

.gossip-detail-template .widget-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

@media (max-width: 768px) {
    .gossip-detail-template .display-4 {
        font-size: 1.75rem;
    }

    .gossip-detail-template .meta-attr {
        flex-direction: column;
        gap: 1rem;
    }

    .gossip-detail-template .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* ===== PAGE TEMPLATE: career-and-achievements-list ===== */
.career-detail-block {
    background-color: #F9FAFB;
    font-family: 'Inter', sans-serif;
}

.career-detail-block h1,
.career-detail-block h2,
.career-detail-block h3,
.career-detail-block h4 {
    font-family: 'Playfair Display', serif;
    color: #1F2937;
}

.career-detail-block .career-hero h1,
.career-detail-block .career-hero h2,
.career-detail-block .career-hero h3 {
    color: #FFFFFF !important;
}

.career-detail-block .text-gold {
    color: #D4AF37;
}

.career-detail-block .article-main-card {
    border-radius: 0;
    background-color: #FFFFFF;
    position: relative;
}

.career-detail-block .custom-list {
    list-style: none;
    padding-right: 0;
}

.career-detail-block .custom-list li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.75rem;
}

.career-detail-block .custom-list li::before {
    content: '\eb7b';
    font-family: 'remixicon';
    position: absolute;
    right: 0;
    color: #D4AF37;
    font-size: 1.1rem;
}

.career-detail-block .btn-submit-comment {
    background-color: #1F2937;
    color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.career-detail-block .btn-submit-comment:hover {
    background-color: #D4AF37;
}

.career-detail-block .comment-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.career-detail-block .action-link {
    color: #4B5563;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.career-detail-block .action-link:hover {
    color: #D4AF37;
}

.career-detail-block .hover-gold:hover {
    color: #D4AF37 !important;
}

.career-detail-block .sidebar-widget {
    border-radius: 0;
}

@media (max-width: 768px) {
    .career-detail-block .article-main-card {
        padding: 1.5rem !important;
    }

    .career-detail-block .display-4 {
        font-size: 1.75rem;
    }

    .career-detail-block .rich-text-content p {
        font-size: 0.95rem;
    }
}