:root {
    --primary-orange: #e78843;
    --orange-soft: #FF9A4D;
    --orange-cream: #FFF2E8;
    --white: #FFFFFF;
    --cream-bg: #FFF9F5;
    --text-dark: #3A3A3A;
    --accent-gold: #ff9100;
    --orange-dark: #cc7b30;
    --shadow: 0 4px 12px rgba(255, 122, 26, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--cream-bg);
    color: var(--text-dark);
    transition: var(--transition);
    line-height: 1.6;
    font-family: 'Satoshi', 'Manrope', 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: 'Vangeda', 'Vengada', cursive;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--orange-dark);
}

p, a, li, button, input, textarea, span {
    font-family: 'Manrope', 'Satoshi', 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-block {
    display: block;
    width: 100%;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    font-size: 2.5rem;
    color: var(--orange-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-orange);
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(255, 122, 26, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 40px;
    transition: var(--transition);
    border-top: 3px solid var(--primary-orange);
    border-bottom: 2px solid var(--orange-cream);
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 3px 10px rgba(255, 122, 26, 0.15);
    animation: slideDown 0.3s ease forwards;
    transition: all 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 45px;
    height: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-orange);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Eurostile', 'Microgramma', 'Arial Black', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

nav {
    margin-left: auto;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 700;
    position: relative;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Eurostile', 'Microgramma', 'Arial Black', sans-serif;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-orange);
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

nav a.active {
    color: var(--primary-orange);
    font-weight: 800;
}

.hamburger {
    position: relative;
    width: 28px;
    height: 20px;
    cursor: pointer;
    display: none;
    z-index: 1200;
}

.hamburger .bar,
.hamburger .bar::before,
.hamburger .bar::after {
    content: "";
    display: block;
    background: var(--text-dark);
    height: 3px;
    width: 100%;
    border-radius: 2px;
    position: absolute;
    transition: all 0.35s ease-in-out;
}

.hamburger .bar::before {
    top: -8px;
}

.hamburger .bar::after {
    bottom: -8px;
}

.hamburger.active .bar {
    background: transparent;
}

.hamburger.active .bar::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.active .bar::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        box-shadow: none;
        padding: 0;
        transition: right 0.4s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 1100;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
        padding: 80px 30px 0;
    }

    nav a {
        font-size: 1.25rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .logo-img {
        width: 42px;
    }

    .logo h1 {
        font-size: 1.35rem;
    }
}

@media (min-width: 901px) {
    nav ul {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    nav a {
        font-size: 1rem;
        white-space: nowrap;
    }
}

.hero {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-cream) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Vangeda', 'Vengada', cursive;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-family: 'Manrope', 'Satoshi', 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.company-name {
    font-family: 'Vangeda', 'Vengada', cursive;
    color: var(--primary-orange);
    font-weight: 700;
}

.profile-text p {
    font-family: 'Manrope', 'Satoshi', 'Poppins', sans-serif;
    margin-bottom: 20px;
    opacity: 0.9;
}

.section-title {
    font-family: 'Vangeda', 'Vengada', cursive;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    font-size: 2.5rem;
    color: var(--orange-dark);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--primary-orange);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.company-profile {
    padding: 0px 0 40px;
}

.company-name {
    color: var(--primary-orange);
    font-weight: 700;
}

.profile-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.profile-text p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.company-history h4 {
    margin-bottom: 15px;
}

.timeline {
    position: relative;
    padding-left: 24px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 122, 26, 0.1);
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    margin-bottom: 25px;
    position: relative;
}

.timeline-year {
    text-align: center;
    padding: 8px 0;
    border-radius: 50px;
    background: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--shadow);
}

.timeline-content {
    background: var(--orange-cream);
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-4px);
    background: var(--orange-cream);
}

.about-page .company-logo,
.company-profile .company-logo,
.profile-image .company-logo {
    max-width: 250px; 
    margin: 0 auto;
}

.about-page .company-logo img,
.company-profile .company-logo img,
.profile-image .company-logo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.profile-image .image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.our-team {
  padding: 60px 0;
  background: var(--cream-bg);
  border-radius: 25px;
  margin-top: 40px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.team-member {
  text-align: center;
  padding: 22px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.team-member:hover {
  transform: translateY(-6px);
  background: var(--orange-cream);
}

.team-member h3 {
    font-family: 'Vangeda', 'Vengada', cursive;
    color: var(--orange-dark);
}

.member-role {
    font-family: 'Manrope', 'Satoshi', 'Poppins', sans-serif;
    color: var(--primary-orange);
    font-weight: 600;
    margin: 5px 0;
}

.member-photo {
  font-size: 3.2rem;
  margin-bottom: 10px;
}

.member-role {
  color: var(--primary-orange);
  font-weight: 600;
  margin: 5px 0;
}

.company-values {
    padding: 60px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.value-card {
    background: var(--orange-cream);
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    background: var(--primary-orange);
    color: var(--white);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .profile-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }
    
    .about-page .company-logo,
    .company-profile .company-logo,
    .profile-image .company-logo {
        max-width: 200px;
    }
    
    .about-page .profile-image img,
    .company-profile .profile-image img {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
    }

    .profile-image .image-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .about-page .company-logo,
    .company-profile .company-logo,
    .profile-image .company-logo {
        max-width: 180px;
    }
}

.novels-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background-color: var(--white);
    border: 1px solid var(--primary-orange);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.novels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.novel-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.novel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 122, 26, 0.15);
}

.novel-img {
    height: 300px;
    width: 100%;
    background-color: var(--orange-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.novel-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.novel-content {
    padding: 20px;
}

.novel-genre {
    display: inline-block;
    background-color: var(--orange-cream);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.novel-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.novel-content p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.novel-price {
    font-weight: bold;
    color: var(--primary-orange);
    margin-top: 10px;
    font-size: 1.2rem;
}

.novel-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.novel-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.novel-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}

.community-highlight {
    background-color: var(--accent-gold);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.community-stat {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.community-stat:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.company-profile {
    margin-bottom: 80px;
}

.timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
    align-items: flex-start;
}

.timeline-year {
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding-top: 5px;
}

.timeline-content h5 {
    color: var(--primary-orange);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.vision-mission-section {
    background: var(--orange-cream);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 15px;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card, .mission-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.our-team {
    margin: 80px 0;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    font-size: 4rem;
    margin-bottom: 15px;
}

.member-role {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.5;
}

.company-values {
    margin: 80px 0;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--orange-cream);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.community-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.discussion-threads {
    margin-bottom: 40px;
}

.thread-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    transition: var(--transition);
}

.thread-card:hover {
    transform: translateY(-2px);
}

.thread-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.thread-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.thread-category {
    background: var(--orange-cream);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.thread-stats {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.thread-actions {
    display: flex;
    gap: 10px;
}

.thread-actions button {
    background: none;
    border: 1px solid var(--primary-orange);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.thread-actions button:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.thread-comments {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--orange-cream);
}

.comment {
    background: var(--orange-cream);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    font-size: 0.8rem;
}

.comment-actions button {
    background: none;
    border: none;
    color: var(--primary-orange);
    cursor: pointer;
    font-weight: 500;
}

.add-comment-form {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.community-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sidebar-card:hover {
    transform: translateY(-2px);
}

.reader-spotlight {
    text-align: center;
}

.reader-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 15px;
    font-weight: bold;
}

.reader-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.top-reviewers .reviewer {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--orange-cream);
}

.review-count {
    color: var(--primary-orange);
    font-weight: 600;
}

.upcoming-events .event {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--orange-cream);
    align-items: flex-start;
}

.event-date {
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.event-info {
    flex: 1;
}

.event-info strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.event-info span {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.collaboration-page {
    background: var(--orange-cream);
}

.collab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.collab-info h3 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h5 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.guidelines {
    margin-top: 30px;
}

.guidelines ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.guidelines li {
    margin-bottom: 8px;
    color: var(--text-dark);
    opacity: 0.8;
}

.collab-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-top: 5px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.form-check-input {
    margin-top: 5px;
}

.form-check-label {
    font-size: 0.9rem;
}

.form-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-top: 5px;
}

.partnership-section {
    margin-top: 80px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partnership-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.partnership-card:hover {
    transform: translateY(-5px);
}

.partnership-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.company-culture {
    margin-bottom: 60px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.culture-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.culture-item:hover {
    transform: translateY(-5px);
}

.culture-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefits-section {
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.job-openings {
    margin: 60px 0;
}

.job-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    transition: var(--transition);
}

.job-card:hover {
    transform: translateY(-2px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.job-title h4 {
    margin-bottom: 5px;
    color: var(--primary-orange);
    font-size: 1.4rem;
}

.job-department {
    background: var(--orange-cream);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.job-type {
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-location, .job-posted {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.job-requirements h5, .job-responsibilities h5 {
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.job-requirements ul, .job-responsibilities ul {
    list-style: disc;
    margin-left: 20px;
}

.job-requirements li, .job-responsibilities li {
    margin-bottom: 5px;
    color: var(--text-dark);
    opacity: 0.8;
}

.job-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.application-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--orange-cream);
    border-radius: 5px;
    background-color: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.3);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.interview-process {
    margin-top: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--primary-orange);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.category-btn.active, .category-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-image {
    height: 200px;
    background: var(--orange-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card.featured .blog-image {
    height: 100%;
}

.image-placeholder {
    font-size: 4rem;
    opacity: 0.7;
}

.blog-content-inner {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 10px 15px;
    background: var(--white);
    border: 1px solid var(--primary-orange);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.page-btn.active, .page-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--orange-cream);
}

.popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-thumb {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.post-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.post-info span {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-newsletter input {
    padding: 10px 15px;
    border: 1px solid var(--orange-cream);
    border-radius: 5px;
    background: var(--white);
    color: var(--text-dark);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--orange-cream);
    color: var(--text-dark);
    transition: var(--transition);
}

.category-item:hover {
    color: var(--primary-orange);
}

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

.post-count {
    background: var(--primary-orange);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 25px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.method-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-info h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.method-info p {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.method-info small {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.social-section {
    margin-top: 30px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: var(--orange-cream);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--white);
}

.social-icon {
    font-size: 1.5rem;
}

.business-hours {
    margin-top: 30px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--orange-cream);
}

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

.contact-form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.map-section {
    margin-top: 80px;
}

.map-container {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.map-placeholder {
    height: 300px;
    background: var(--orange-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    padding: 40px;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.map-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.faq-section {
    margin-top: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--orange-cream);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.2rem;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
}

.newsletter {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-cream) 100%);
    padding: 60px 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    max-width: 500px;
    margin: 20px auto 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 1rem;
}

.newsletter-btn {
    padding: 12px 25px;
    background-color: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--primary-orange);
}

footer {
    font-family: 'Manrope', 'Satoshi', 'Poppins', sans-serif;
    background-color: var(--orange-dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-family: 'Vangeda', 'Vengada', cursive;
    margin: 0;
    color: var(--white);
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact-sosmed h3 {
    display: flex;
    justify-content: start;
    align-items: start;
    color: var(--white);
}

.footer-contact .contact-icon {
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.footer-newsletter h3 {
    margin-bottom: 15px;
    color: var(--white);
}

.footer-newsletter p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.footer-newsletter-form input {
    flex: 1 1 auto;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background: var(--white);
    color: var(--text-dark);
    min-width: 180px;
}

.footer-newsletter-form button {
    padding: 10px 20px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 500;
    min-width: 100px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
        justify-content: start;
        flex-wrap: wrap-reverse;
    }
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-dark);
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: var(--orange-cream);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 15px;
    text-align: center;
}

.footer-links-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.footer-links-bottom a {
    font-size: 0.9rem;
    opacity: 0.85;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-content {
        gap: 25px;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-newsletter {
        justify-content: center;
        align-items: center;
    }

    .footer-newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .footer-newsletter-form input,
    .footer-newsletter-form button {
        border-radius: 5px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: flex-start;
    padding: 0 0% 50px;
}

.footer-content > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 80px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: start;
    }

    .footer-content > div {
        align-items: start;
    }

    .footer-contact .contact-item {
        justify-content: start;
        text-align: left;
    }
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: var(--accent-gold);
    color: var(--white);
    border: 1px solid var(--accent-gold);
}

.alert-error {
    background: var(--orange-cream);
    border: 1px solid var(--orange-soft);
    color: var(--primary-orange);
}

.alert-info {
    background: var(--orange-cream);
    border: 1px solid var(--accent-gold);
    color: var(--orange-dark);
}

.breadcrumbs {
    margin-bottom: 30px;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumbs li {
    font-size: 0.9rem;
}

.breadcrumbs li:not(.active) a {
    color: var(--primary-orange);
}

.breadcrumbs li.active {
    color: var(--text-dark);
    opacity: 0.7;
}

.breadcrumbs .separator {
    opacity: 0.5;
}

@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .about-preview-content,
    .profile-content,
    .vm-grid,
    .community-content,
    .collab-content,
    .blog-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .form-row,
    .job-details {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        padding: 0px !important;
    }
    
    nav ul {
        flex-direction: column;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
        gap: 15px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .novels-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .culture-grid,
    .benefits-grid,
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input, .newsletter-btn {
        width: 100%;
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .job-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .job-meta {
        align-items: flex-start;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: start;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .map-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .novels-grid {
        grid-template-columns: 1fr;
    }
    
    .community-stats,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

.p-0 {
    padding: 0;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--orange-cream);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 40px;
    transition: var(--transition);
    border-top: 3px solid var(--primary-orange);
    border-bottom: 2px solid var(--orange-cream);
}

.header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: 0.5px;
}

nav {
    margin-left: auto !important;
}

nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-end;
}

nav a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary-orange);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.vision-mission-grid {
    background: var(--orange-cream);
    padding: 80px 0;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.vm-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.vm-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.vm-card h3 {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.vm-card p {
    color: var(--text-dark);
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-stats {
    background: var(--orange-cream);
    padding: 80px 0;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    margin-top: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.stat-icon {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.stat-card h3 {
    color: var(--primary-orange);
    font-size: 1.7rem;
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-dark);
    opacity: 0.85;
    font-weight: 500;
    font-size: 1rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-wrapper {
    position: relative;
}

.slider, .news-slider, .partner-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 0;
}

.slider::-webkit-scrollbar,
.news-slider::-webkit-scrollbar,
.partner-slider::-webkit-scrollbar {
    display: none;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2.8rem;
    color: #222;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.2s ease, color 0.3s ease;
    outline: none;
    box-shadow: none;
}

.slide-btn:hover,
.slide-btn:focus,
.slide-btn:active {
    background: none !important;
    color: var(--primary-orange);
    transform: translateY(-50%) scale(1.2);
}

.slide-btn.left {
    left: 35px;
}

.slide-btn.right {
    right: 35px;
}

.slide-btn:hover {
    background-color: rgba(255, 122, 26, 0.1);
}

.slide-btn.left { left: -10px; }
.slide-btn.right { right: -10px; }

.slide, .news-card, .partner-card {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 15px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.slide h3 {
    text-align: center;
    padding: 10px;
    font-size: 1rem;
}

.partner-card img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.slider-wrapper { position: relative; }

.slider, .news-slider, .partner-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 0;
}

.slide {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.novel-info {
    padding: 15px;
}

.novel-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.novel-info p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.partner-card {
    flex: 0 0 auto;
    width: 220px;
    background: var(--white);
    text-align: center;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.partner-card img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.novel-desc {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    margin: 10px 0;
}

.novel-desc strong {
    color: #222;
}

.novel-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
    gap: 20px;
    padding: 20px;
}

.novel-image img {
    width: 320px;
    height: 460px;
    object-fit: cover;
    border-radius: 10px;
}

.novel-details {
    flex: 1;
    font-size: 0.95rem;
    color: #444;
}

.novel-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.novel-desc {
    margin: 10px 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .novel-card {
        flex-direction: column;
        width: 95%;
        text-align: center;
    }
    
    .novel-image img {
        width: 100%;
        height: auto;
    }
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--cream-bg);
    font-family: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
}

header {
    background: transparent;
    box-shadow: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: none;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 0;
    vertical-align: middle;
    margin-right: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    nav {
        position: fixed;
        right: -100%;
        width: 220px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        box-shadow: -2px 0 8px rgba(0,0,0,0.1);
        padding: 20px;
        border-radius: 15px 0 0 15px;
        transition: right 0.3s ease;
        z-index: 2000;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        font-size: 1rem;
        color: var(--text-dark);
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: var(--primary-orange);
    }

    .hamburger {
        display: flex;
    }

    .logo h1 {
        font-size: 0.9rem;
    }
}

.full-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    padding: 0 25px;
    box-sizing: border-box;
    margin-top: 0px !important;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.55));
    z-index: 2;
    pointer-events: none;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.75);
    border: none;
    color: #111;
    font-size: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.slide-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slide-btn.left {
    left: 45px;
}

.slide-btn.right {
    right: 45px;
}

.full-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 120px;
    border-radius: 0 0 25px 25px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--cream-bg));
    z-index: 3;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .slide {
        position: absolute;
        inset: 0;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: 0;
    }

    .full-hero {
        height: 27vh;
        padding: 0 20px;
        margin-top: 0px !important;
    }

    .slide-btn.left {
        left: 30px;
    }

    .slide-btn.right {
        right: 30px;
    }
}

@media (max-width: 768px) {
    .slide {
        position: absolute;
        inset: 0;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: 0;
    }

    .full-hero {
        height: 70vh;
        padding: 0 15px;
        margin-top: 0px !important;
    }

    .hero-slider {
        border-radius: 18px;
    }

    .slide-btn {
        font-size: 26px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .slide {
        position: absolute;
        inset: 0;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: 0;
    }
    
    .full-hero {
        height: 40vw;
        padding: 0 12px;
        margin-top: 00px !important;
    }

    .hero-slider {
        border-radius: 14px;
    }

    .slide-btn {
        font-size: 24px;
        width: 36px;
        height: 36px;
    }

    .slide-btn.left {
        left: 20px;
    }

    .slide-btn.right {
        right: 20px;
    }
}

.news-section {
    background-color: var(--cream-bg);
    padding: 100px 0;
    text-align: center;
}

.news-section .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 40px;
    position: relative;
}

.news-section .section-title::after {
    content: "";
    width: 60px;
    height: 2px;
    background-color: var(--primary-orange);
    display: block;
    margin: 10px auto 0;
}

.news-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 70px;
    box-sizing: border-box;
}

.news-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.news-slider::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.news-card h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-card .news-date {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.btn.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 10px 18px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn.btn-secondary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.news-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #222;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease, transform 0.2s ease;
}

.news-btn:hover {
    color: var(--primary-orange);
    transform: translateY(-50%) scale(1.15);
}

.news-btn.left {
    left: 15px;
}

.news-btn.right {
    right: 15px;
}

.partners {
    background-color: var(--cream-bg);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.partners .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 40px;
    position: relative;
}

.partners .section-title::after {
    content: "";
    width: 60px;
    height: 2px;
    background-color: var(--primary-orange);
    display: block;
    margin: 10px auto 0;
}

.partner-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.partner-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 20px 60px;
}

.partner-slider::-webkit-scrollbar {
    display: none;
}

.partner-card {
    flex: 0 0 200px;
    background-color: var(--white);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.partner-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.partner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #444;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease, transform 0.2s ease;
}

.partner-btn:hover {
    color: var(--primary-orange);
    transform: translateY(-50%) scale(1.2);
}

.partner-btn.left {
    left: 10px;
}

.partner-btn.right {
    right: 10px;
}

.team-section {
  background: transparent;
  padding: 80px 0;
}

.ceo-section {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.team-member,
.ceo-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  max-width: 320px;
  margin: 0 auto;
}

.member-photo,
.ceo-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  display: block;
}

.view-all-team-btn {
  text-align: center;
  margin: 28px 0 36px;
}

.team-grid-container {
  display: none;
}

.team-grid-container.show {
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.team-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
}

.team-card {
    flex: 1 1 220px;
    max-width: 240px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 25px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-bottom: 10px;
}

.team-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.team-card .role {
    color: #777;
    font-style: italic;
    font-size: 0.9rem;
}

.all-team {
    margin-top: 50px;
    transition: all 0.4s ease;
}

.hidden {
    display: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    border: none;
    padding: 12px 30px;
    color: var(--white);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--orange-soft);
}

.about-page {
    background-color: var(--cream-bg);
    padding: 0px 0 20px !important;
}

.company-profile {
    margin-bottom: 20px !important;
}

.about-stats {
    margin-top: 10px !important;
    padding-top: 20px !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&display=swap');

@font-face {
    font-family: 'Vengada';
    src: url('fonts/Vengada-Regular.woff2') format('woff2');
}

body {
    background-color: var(--cream-bg);
    color: #4a4a4a;
    font-family: 'Manrope', sans-serif;
}

.section-title {
    text-align: center;
    color: var(--primary-orange);
    font-family: 'Vengada', sans-serif;
    font-size: 2.5rem;
    margin-top: 40px;
}

.novels-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.filter-btn {
    border: none;
    background: var(--white);
    color: #4a4a4a;
    padding: 10px 25px;
    border-radius: 25px;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.novels-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.novel-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    background: var(--white);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    text-align: left;
}

.novel-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 122, 26, 0.15);
}

.novel-image img {
    width: 280px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.novel-info {
    flex: 1;
    text-align: left;
}

.novel-meta {
    margin-top: 10px;
    text-align: left;
    color: #555;
    font-size: 0.95rem;
}

.novel-info h3 {
    font-family: 'Vengada', sans-serif;
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.novel-genre {
    display: block;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.novel-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.novel-meta span {
    margin-right: 15px;
    font-size: 0.95rem;
}

.novel-price {
    display: inline-block;
    background: var(--orange-cream);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: var(--orange-cream);
    color: #4a4a4a;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.load-more-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .novel-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .novel-image img {
        width: 80%;
        height: auto;
        margin: 0 auto;
    }

    .novel-info {
        text-align: center;
    }

    .novel-meta {
        text-align: center;
    }
}

.novel-genre {
    display: inline-block;
    background: var(--orange-cream);
    color: var(--primary-orange);
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(232, 214, 201, 0.3);
}

.novel-price {
    display: inline-block;
    background: var(--orange-cream);
    color: var(--primary-orange);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.novel-price:hover {
    background: var(--orange-cream);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(245, 232, 220, 0.5);
}

.novel-meta {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 768px) {
    .novel-meta {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.novel-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

body {
    background-color: var(--cream-bg) !important;
}

section,
.page-section,
.container {
    background: transparent !important;
    box-shadow: none !important;
}

section {
    padding-bottom: 60px;
}

.filter-btn {
    border: none;
    background: var(--white);
    color: #4a4a4a;
    padding: 10px 25px;
    border-radius: 25px;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.novel-row {
    position: relative;
    overflow: hidden;
}

.novel-rating {
    position: absolute;
    top: 18px;
    right: 25px;
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    z-index: 5;
}

body {
    padding-top: 0px;
}

@media (max-width: 900px) {
    #navbar.active ul {
        margin-top: 40px;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: -3px 0 10px rgba(0,0,0,0.1);
        border-radius: 15px 0 0 15px;
        transition: right 0.3s ease;
        z-index: 2000;
        padding: 25px;
    }

    nav ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        list-style: none !important;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        color: var(--text-dark) !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: var(--primary-orange) !important;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 3000;
    }

    .hamburger span {
        background: var(--text-dark);
        height: 3px;
        width: 25px;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
}

@media (max-width: 900px) {
    .header-container {
        flex-wrap: wrap;
        padding: 10px 20px;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        background: transparent;
        box-shadow: none;
        padding: 15px;
        border-radius: 10px;
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .novel-card,
    .profile-content,
    .vm-grid {
        grid-template-columns: 1fr;
    }

    img {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
    }
}

.team-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.team-photo img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(255, 122, 26, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 40px;
    transition: var(--transition);
    border-bottom: 1px solid rgba(232, 214, 201, 0.3);
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 3px 15px rgba(255, 122, 26, 0.15);
    animation: slideDown 0.3s ease forwards;
    transition: all 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 45px;
    height: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-orange);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Eurostile', 'Microgramma', 'Arial Black', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

nav {
    margin-left: auto;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 700;
    position: relative;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #333333;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Eurostile', 'Microgramma', 'Arial Black', sans-serif;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-orange);
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

nav a.active {
    color: var(--primary-orange);
    font-weight: 800;
}

.hamburger {
    position: relative;
    width: 28px;
    height: 20px;
    cursor: pointer;
    display: none;
    z-index: 1200;
}

.hamburger .bar,
.hamburger .bar::before,
.hamburger .bar::after {
    content: "";
    display: block;
    background: #333333;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    position: absolute;
    transition: all 0.35s ease-in-out;
}

.hamburger .bar::before {
    top: -8px;
}

.hamburger .bar::after {
    bottom: -8px;
}

.hamburger.active .bar {
    background: transparent;
}

.hamburger.active .bar::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.active .bar::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        box-shadow: none;
        padding: 0;
        transition: right 0.4s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 1100;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
        padding: 80px 30px 0;
    }

    nav a {
        font-size: 1.25rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #333333;
    }

    .logo-img {
        width: 42px;
    }

    .logo h1 {
        font-size: 1.35rem;
    }
}

@media (min-width: 901px) {
    nav ul {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    nav a {
        font-size: 1rem;
        white-space: nowrap;
    }
}

header {
    background: var(--white) !important;
    box-shadow: 0 2px 15px rgba(255, 122, 26, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 40px;
    transition: var(--transition);
    border-bottom: 1px solid rgba(232, 214, 201, 0.3);
}

.header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: 0.5px;
}

nav {
    margin-left: auto !important;
}

nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-end;
}

nav a {
    font-weight: 500;
    font-size: 1rem;
    color: #333333;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary-orange);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.novel-price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.novel-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-orange);
}

.store-links {
  display: flex;
  gap: 10px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tiktokshop-btn {
  background-color: #000;
  color: var(--white);
  border: 2px solid #000;
}

.tiktokshop-btn:hover {
  background-color: #333;
  border-color: #333;
}

.shoppee-btn {
  background-color: #ee4d2d;
  color: var(--white);
  border: 2px solid #ee4d2d;
}

.shoppee-btn:hover {
  background-color: #d73c1f;
  border-color: #d73c1f;
}

.store-btn i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .novel-price-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .store-links {
    width: 100%;
    justify-content: space-between;
  }
  
  .store-btn {
    flex: 1;
    justify-content: center;
  }
}

.our-team .team-grid {
  display: none;
}
.our-team .team-grid.show {
  display: grid;
}

.our-team .team-member.ceo,
.our-team .team-member[data-role="ceo"],
.our-team .team-member[data-role="CEO"] {
  grid-column: 1 / -1;
  max-width: 340px;
  margin: 0 auto;
}

.our-team .toggle-team,
.our-team .btn-toggle-team {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 0;
}

.novels-grid {
  justify-items: center;
}

.novels-grid .novel-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .novels-grid {
    grid-template-columns: 1fr !important;
  }
  .novels-grid .novel-card {
    width: 100%;
    max-width: 520px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .novels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }
  .novels-grid .novel-card {
    max-width: 100% !important;
  }
}

.job-type {
  color: var(--white) !important;
}

.map-actions .btn-secondary,
.map-actions .btn-primary {
  background-color: var(--primary-orange) !important;
  color: var(--white) !important;
}
.map-actions .btn-secondary:hover,
.map-actions .btn-primary:hover {
  background-color: var(--orange-dark) !important;
}

.footer-contact h3,
.footer-contact-sosmed h3 {
  color: var(--white) !important;
}

@media (max-width: 768px) {
  header {
    padding: 12px 18px !important;
  }
  .header-container {
    padding: 0 !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }
  .logo {
    flex: 1 1 auto;
    min-width: 0;
  }
  .logo h1 {
    font-size: 1rem !important;
    white-space: nowrap;
  }
  .hamburger {
    flex: 0 0 auto;
  }
}
.novel-price-section{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
}
.store-links{
  margin-left:auto;
  display:flex;
  gap:12px;
  align-items:center;
}

@media (min-width: 769px) and (max-width: 1024px){
  .novel-price-section{
    padding-left:10px;
    padding-right:10px;
    gap:18px;
  }
  .store-links{ gap:14px; }
}

@media (max-width: 768px){
  .novel-price-section{
    flex-direction:column;
    align-items:center !important;
    justify-content:center;
    gap:12px;
    text-align:center;
  }
  .store-links{
    width:100%;
    margin-left:0;
    justify-content:center !important;
    gap:12px;
  }
  .store-btn{
    flex:0 0 auto;
    min-width:120px;
    justify-content:center;
  }
}

footer .footer-about p,
footer .footer-logo + p,
footer .footer-content p{
  margin: 0;
}
footer .footer-about p + p,
footer .footer-content p + p{
  margin-top: 6px;
}

.our-team .team-member img,
.our-team .team-member .member-photo img,
.our-team .team-member .photo img,
.our-team .team-member .avatar img {
  width: 110px !important;
  height: 110px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto 12px !important;
  border: 3px solid var(--primary-orange) !important;
  background: var(--white) !important;
}

.our-team .team-member .member-photo,
.our-team .team-member .photo,
.our-team .team-member .avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 12px;
  overflow: hidden;
  border: 3px solid var(--primary-orange);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-team .toggle-team,
.our-team button,
.our-team .btn-toggle-team {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 22px auto 10px !important;
  border-radius: 999px !important;
}

.novel-card .price,
.novel-card .novel-price,
.novel-card .novel-price-pill,
.novel-card .price-pill,
.novel-card .price-tag {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.novel-card .price span,
.novel-card .novel-price span,
.novel-card .novel-price-pill span,
.novel-card .price-pill span,
.novel-card .price-tag span {
  display: inline !important;
  vertical-align: middle !important;
}

@media (max-width: 768px) {
  .novel-card .novel-actions,
  .novel-card .actions,
  .novel-card .shop-buttons {
    justify-content: center !important;
  }

  .novel-card .price,
  .novel-card .novel-price,
  .novel-card .novel-price-pill,
  .novel-card .price-pill,
  .novel-card .price-tag {
    margin: 0 auto !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .novel-card .novel-actions,
  .novel-card .actions,
  .novel-card .shop-buttons {
    gap: 14px !important;
  }

  .novel-card .price,
  .novel-card .novel-price,
  .novel-card .novel-price-pill,
  .novel-card .price-pill,
  .novel-card .price-tag {
    margin-right: 14px !important;
  }
}

footer .footer-about p,
footer .footer-left p,
.footer .footer-left p,
.footer-desc {
  margin-top: 6px !important;
}

:is(.price, .price-tag, .novel-price, .book-price, .harga, .harga-buku, .novel_harga) {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 6px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

:is(.price, .price-tag, .novel-price, .book-price, .harga, .harga-buku, .novel_harga) * {
  display: inline !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

:is(.price, .price-tag, .novel-price, .book-price, .harga, .harga-buku, .novel_harga)
:is(p, span, strong, b) {
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  :is(.novel-actions, .product-actions, .cta-actions, .novel-btns, .buy-buttons) {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :is(.novel-actions, .product-actions, .cta-actions, .novel-btns, .buy-buttons) {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
  }
}

:is(.our-team, .team-section, .team-area, .about-team, section#team, section.team) {
  position: relative;
}

:is(.our-team, .team-section, .team-area, .about-team, section#team, section.team)
:is(.team-grid, .team-container, .team-list, .team-wrapper) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  justify-items: center;
}

:is(.our-team, .team-section, .team-area, .about-team, section#team, section.team)
:is(.team-card, .team-member, .member-card) {
  width: 100%;
  max-width: 280px;
  background: var(--white);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  text-align: center;
}

:is(.our-team, .team-section, .team-area, .about-team, section#team, section.team)
:is(.team-card, .team-member, .member-card)
:is(img, .avatar, .member-photo) {
  width: 120px !important;
  height: 120px !important;
  border-radius: 999px !important;
  object-fit: cover !important;
  border: 3px solid var(--primary-orange) !important;
  display: block !important;
  margin: 0 auto 14px !important;
}

:is(.our-team, .team-section, .team-area, .about-team, section#team, section.team)
:is(.team-card.ceo, .team-member.ceo, .member-card.ceo, .ceo-card) {
  grid-column: 1 / -1;
  justify-self: center;
}

:is(.our-team, .team-section, .team-area, .about-team, section#team, section.team)
:is(.team-grid, .team-container, .team-list, .team-wrapper)
>:is(.team-card, .team-member, .member-card):first-child {
  grid-column: 1 / -1;
  justify-self: center;
}

:is(.toggle-team, #toggleTeam, .lihat-semua-tim, .btn-lihat-tim, .btn-team) {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 16px auto 0 !important;
  padding: 10px 22px !important;
  border-radius: 999px !important;
}

:is(.our-team, .team-section, .team-area, .about-team, section#team, section.team)
:is(.team-grid, .team-container, .team-list, .team-wrapper)
>:is(.toggle-team, #toggleTeam, .lihat-semua-tim, .btn-lihat-tim, .btn-team) {
  grid-column: 1 / -1;
  justify-self: center;
}

:is(.team-grid, .team-container, .team-list, .team-wrapper).team-hidden,
:is(.team-grid, .team-container, .team-list, .team-wrapper):not(.show) {
  display: none !important;
}

.price-tag{
  align-items: baseline !important;
}
.price-tag > *{
  display: inline !important;
  line-height: 1 !important;
  vertical-align: baseline !important;
}
.price-tag span{
  display: inline !important;
}

.team-section .team-grid{
  justify-items: center !important;
  justify-content: center !important;
}

.team-section :is(.team-card, .team-member, .member-card, .team-item){
  width: 100% !important;
  max-width: 260px !important;
}

.team-section .ceo{
  background: var(--white) !important;
  border-radius: 18px !important;
  padding: 28px 22px !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08) !important;
  text-align: center !important;
  margin: 0 auto !important;
}
.team-section .ceo img{
  width: 110px !important;
  height: 110px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto 14px !important;
  border: 3px solid rgba(255, 122, 26, 0.65) !important;
}

.team-section :is(.btn-primary, .lihat-semua-tim, .see-all-team){
  display: inline-block !important;
  margin: 18px auto 0 !important;
}
.team-section .team-action,
.team-section .team-toggle,
.team-section .btn-wrap{
  display: flex !important;
  justify-content: center !important;
}

.team-section .all-team.show{
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 28px !important;
  justify-items: center !important;
}

.footer-logo{
  margin-bottom: 0 !important;
}
.footer-desc{
  margin-top: 0 !important;
}

html, body {
  background-color: var(--cream-bg) !important;
}

.team,
.team-section,
.our-team,
#team {
  background-color: var(--cream-bg) !important;
}

.team-wrapper,
.team-grid,
.team-grid-container,
.all-team {
  display: flex !important;
  flex-wrap: wrap;
}

.hidden {
  display: none !important;
}

.team-card {
  background: var(--white) !important;
}
.testimoni-image {
  padding: 80px 0;
  background: var(--cream-bg);
}

.testimoni-image .container {
  display: flex;
  justify-content: center;
}

.testimoni-img {
  width: 1100px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:768px){
  .testimoni-image{
    padding: 50px 20px;
  }
  .testimoni-img{
    width:100%;
  }
}

.about-page .profile-image,
.company-profile .profile-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-page .profile-image img,
.company-profile .profile-image img,
.profile-image .company-logo img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-page .profile-image img,
  .company-profile .profile-image img,
  .profile-image .company-logo img {
    max-width: 200px !important;
    margin: 0 auto;
  }
  
  .profile-content {
    gap: 30px !important;
  }
  
  .timeline-item {
    grid-template-columns: 70px 1fr !important;
  }
}

@media (max-width: 768px) {
  .about-page .profile-image img,
  .company-profile .profile-image img,
  .profile-image .company-logo img {
    max-width: 180px !important;
  }
}

.testimoni-image {
  padding: 100px 0;
  background: linear-gradient(
    to bottom,
    var(--orange-cream) 0%,
    #f9f1e8 50%,
    var(--orange-cream) 100%
  );
}

.testimoni-header {
  text-align: center;
  margin-bottom: 30px;
}

.testimoni-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
}

.testimoni-subtitle::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-gold);
  margin: 12px auto 0;
}

.testimoni-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimoni-track {
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
}

.testimoni-card {
  flex: 0 0 33.333%;
  scroll-snap-align: center;
}

.testimoni-card img {
  width: 100%;
  border-radius: 20px;
  background: var(--white);
  padding: 20px;
  box-shadow:
    0 20px 40px rgba(0,0,0,.08),
    0 6px 18px rgba(0,0,0,.05);
}

@media (max-width: 768px) {

  .testimoni-image {
    padding: 70px 0;
  }

  .testimoni-card {
    flex: 0 0 85%;
  }

  .testimoni-track {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.about-page {
    padding: 60px 0 !important;
}

.about-stats {
    background: var(--orange-cream);
    padding: 80px 0;
    border-radius: 20px;
    margin: 60px auto;
    width: 90%;
    max-width: 1200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
    opacity: 0.9;
}

.team {
    background: var(--cream-bg) !important;
    padding: 80px 0;
}

.team-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    width: 250px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
    margin-bottom: 15px;
}

.team-card h3 {
    color: var(--orange-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.team-card .role {
    color: var(--primary-orange);
    font-weight: 500;
}

.ceo-card {
    background: linear-gradient(135deg, var(--white) 0%, #f9f1e8 100%);
    border: 2px solid var(--accent-gold);
    transform: scale(1.05);
}

.hidden {
    display: none !important;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background: var(--primary-orange);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-wrapper {
        gap: 20px;
    }
    
    .team-card {
        width: calc(50% - 20px);
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .team-card {
        width: 100%;
        max-width: 280px;
    }
    
    .team-photo img {
        width: 100px;
        height: 100px;
    }
}

.company-profile {
    margin-bottom: 60px;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.profile-text {
    flex: 1;
}

.company-name {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.profile-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.9;
}

.profile-image {
    display: flex;
    justify-content: center;
}

.profile-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-image {
        order: -1;
    }
}

.team-ceo-container {
    display: none !important;
}

.team-wrapper {
    display: none !important;
}

#team .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-grid-main {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    width: 100% !important;
    margin: 30px auto !important;
}

.team-grid-all {
    display: none !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.team-grid-all.show {
    display: grid !important;
    animation: fadeIn 0.5s ease;
}

.team-card {
    background: var(--white) !important;
    border-radius: 16px !important;
    padding: 25px 20px !important;
    text-align: center !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07) !important;
    transition: all 0.3s ease !important;
    border: 2px solid var(--orange-cream) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 280px !important;
    width: 100% !important;
}

.ceo-card {
    background: var(--white) !important;
    border: 2px solid var(--orange-cream) !important;
    transform: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07) !important;
}

.team-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 25px rgba(255, 122, 26, 0.12) !important;
}

.team-photo {
    margin-bottom: 15px !important;
}

.team-photo img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid var(--orange-cream) !important;
    box-shadow: 0 4px 10px rgba(255, 122, 26, 0.1) !important;
}

.team-card h3 {
    color: var(--orange-dark) !important;
    font-size: 1.15rem !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.team-card .role {
    color: var(--primary-orange) !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
}

.team-toggle-container {
    text-align: center !important;
    margin: 40px 0 20px !important;
    width: 100% !important;
}

#toggleTeamBtn {
    padding: 12px 40px !important;
    font-size: 1rem !important;
    background: var(--primary-orange) !important;
    border: none !important;
    border-radius: 25px !important;
    color: var(--white) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(255, 122, 26, 0.2) !important;
}

#toggleTeamBtn:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(255, 122, 26, 0.3) !important;
}

@media (max-width: 1200px) {
    .team-grid-main,
    .team-grid-all.show {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
    }
}

@media (max-width: 900px) {
    .team-grid-main,
    .team-grid-all.show {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    .team-photo img {
        width: 110px !important;
        height: 110px !important;
    }
}

@media (max-width: 600px) {
    .team-grid-main,
    .team-grid-all.show {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        max-width: 320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .team-photo img {
        width: 100px !important;
        height: 100px !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.load-more-container {
  text-align: center;
  margin: 60px 0 40px;
}

.load-more-btn {
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  padding: 15px 45px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.load-more-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 122, 26, 0.3);
}

.novels-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 25px;
  background: var(--white);
  border: 2px solid var(--primary-orange);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-orange);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 122, 26, 0.2);
}

@media (max-width: 768px) {
    .company-profile .profile-content {
        display: flex;
        flex-direction: column;
    }
    
    .company-profile .profile-text {
        order: 1;
        margin-bottom: 40px;
    }
    
    .company-profile .profile-image {
        order: 2;
        margin-top: 0;
        text-align: center;
    }
    
    .company-profile .profile-image img {
        max-width: 180px;
    }
}

@media (min-width: 769px) {
    .company-profile .profile-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 50px;
    }
    
    .company-profile .profile-text {
        text-align: left;
    }
    
    .company-profile .profile-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #c46f0f, #2ecc71);
  border-radius: 2px;
}

.novels-page {
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

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

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

.writers-page {
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  min-height: 100vh;
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 15px;
}

.page-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  border-radius: 2px;
}

.writer-count {
  text-align: center;
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 2.5rem;
}

.writer-count span {
  font-weight: bold;
  color: #db9834;
  font-size: 1.3rem;
}

.writers-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.writer-card {
  margin-bottom: 2.5rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.writer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.writer-header {
  background: linear-gradient(to right, #2c3e50, #3498db);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.writer-id {
  background: white;
  color: #3498db;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  min-width: 40px;
  text-align: center;
}

.writer-name {
  color: white;
  font-size: 1.3rem;
  margin: 0;
  flex: 1;
}

.writer-frame {
  display: flex;
  min-height: 500px;
}

.writer-left {
  width: 325px;
  padding: 2.5rem;
  background: #f8fafc;
  border-right: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.writer-photo-container {
  width: 100%;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  background: white;
}

.writer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.writer-photo:hover {
  transform: scale(1.03);
}

.writer-right {
  flex: 1;
  padding: 2.5rem;
  background: white;
  display: flex;
  flex-direction: column;
}

.covers-section {
  flex: 1;
}

.covers-title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #db9834;
  display: inline-block;
}

.covers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  width: 100%;
}

.cover-item {
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  height: 300px;
}

.cover-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  border-color: #ce811d;
}

.cover-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: white;
}

.novel-cover {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 1200px) {
  .covers-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
  }
  
  .cover-item {
    height: 280px;
  }
}

@media (max-width: 992px) {
  .writer-frame {
    flex-direction: column;
    min-height: auto;
  }
  
  .writer-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    padding: 2rem;
  }
  
  .writer-photo-container {
    height: 350px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .writer-right {
    padding: 2rem;
  }
  
  .covers-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
  }
  
  .cover-item {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  
  .writer-card {
    margin-bottom: 2rem;
  }
  
  .writer-header {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .writer-id {
    align-self: flex-start;
  }
  
  .writer-name {
    font-size: 1.1rem;
  }
  
  .writer-left,
  .writer-right {
    padding: 1.5rem;
  }
  
  .writer-photo-container {
    height: 300px;
  }
  
  .covers-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
  }
  
  .cover-item {
    height: 210px;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 1.75rem;
  }
  
  .writer-count {
    font-size: 1rem;
  }
  
  .covers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cover-item {
    height: 190px;
  }
  
  .writer-photo-container {
    height: 250px;
  }
}

@media (max-width: 400px) {
  .covers-grid {
    grid-template-columns: 1fr;
  }
  
  .cover-item {
    height: 220px;
    max-width: 250px;
    margin: 0 auto;
  }
}

.trailer-with-cover {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.15); 
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-trailer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.trailer-with-cover {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trailer-with-cover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cover-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trailer-cover {
    width: 100%;
    max-width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.trailer-with-cover:hover .trailer-cover {
    transform: scale(1.03);
}

.cover-info {
    margin-top: 20px;
    text-align: center;
    color: white;
}

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

.cover-info p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.video-side {
    display: flex;
    align-items: center;
}

.video-item {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.prices-horizontal {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 15px;
}

.price-physical, .price-digital {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.7;
  margin-bottom: 5px;
  font-weight: 500;
}

.novel-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-orange);
}

.novel-price.digital {
  color: #4CAF50;
  font-weight: 700;
}

.novel-price-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--orange-cream);
}

.store-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 120px;
  justify-content: center;
  border: 2px solid transparent;
}

.tiktokshop-btn {
  background-color: #000;
  color: var(--white);
  border-color: #000;
}

.tiktokshop-btn:hover {
  background-color: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.shoppee-btn {
  background-color: #ee4d2d;
  color: var(--white);
  border-color: #ee4d2d;
}

.shoppee-btn:hover {
  background-color: #d73c1f;
  border-color: #d73c1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 77, 45, 0.3);
}

.digital-btn {
  background-color: #4CAF50;
  color: var(--white);
  border-color: #4CAF50;
}

.digital-btn:hover {
  background-color: #3d8b40;
  border-color: #3d8b40;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.store-btn i {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .prices-horizontal {
    gap: 25px;
  }
  
  .store-links {
    gap: 10px;
  }
  
  .store-btn {
    min-width: 115px;
    padding: 10px 15px;
  }
}

@media (max-width: 768px) {
  .prices-horizontal {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }
  
  .price-physical, .price-digital {
    align-items: center;
  }
  
  .store-links {
    justify-content: center;
    width: 100%;
  }
  
  .store-btn {
    min-width: 110px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  .novel-price-section {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .store-links {
    flex-direction: column;
    width: 100%;
  }
  
  .store-btn {
    width: 100%;
    min-width: auto;
    justify-content: center;
  }
  
  .prices-horizontal {
    gap: 10px;
  }
}

.novel-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.novel-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.15);
}

.novel-image img {
  width: 250px;
  height: 350px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.novel-info {
  flex: 1;
}

.novel-info h3 {
  font-family: 'Vangeda', 'Vengada', cursive;
  color: var(--orange-dark);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.novel-genre {
  display: inline-block;
  background: var(--orange-cream);
  color: var(--primary-orange);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.novel-info p {
  color: var(--text-dark);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 15px;
}

.novel-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.load-more-container {
  text-align: center;
  margin: 40px 0 20px;
}

.load-more-btn {
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.load-more-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 122, 26, 0.3);
}

.novels-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  background: var(--white);
  border: 2px solid var(--primary-orange);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-orange);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
}
.novels-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.novel-row {
  display: flex;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 154, 77, 0.1);
  align-items: center;
  gap: 50px;
}

.novel-image-container {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.novel-cover {
  width: 280px;
  height: 400px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.novel-row:hover .novel-cover {
  transform: scale(1.03);
}

.novel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.novel-header {
  margin-bottom: 20px;
}

.novel-header h3 {
  font-family: 'Vangeda', 'Vengada', cursive;
  color: var(--orange-dark);
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.novel-genre {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-cream) 0%, rgba(255, 154, 77, 0.1) 100%);
  color: var(--primary-orange);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 154, 77, 0.3);
}

.novel-description {
  color: var(--text-dark);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
  flex-grow: 1;
}

.novel-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 1rem;
  margin-bottom: 25px;
  margin-top: 10px;
}

.novel-price-section {
  margin-top: auto;
  padding-top: 25px;
  border-top: 2px solid var(--orange-cream);
}

.price-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 25px;
}

.price-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 160px;
}

.price-label-bg {
  background: var(--orange-cream);
  color: var(--primary-orange);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
  white-space: nowrap;
  border: 1px solid rgba(255, 154, 77, 0.3);
  box-shadow: 0 4px 12px rgba(255, 154, 77, 0.15);
  width: 100%;
  max-width: 200px;
}

.novel-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 0.5px;
}

.novel-price.digital {
  color: #4CAF50;
  font-weight: 800;
}

.store-buttons-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tiktokshop-btn {
  background-color: #000;
  color: var(--white);
  border-color: #000;
}

.tiktokshop-btn:hover {
  background-color: #333;
  border-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.shoppee-btn {
  background-color: #ee4d2d;
  color: var(--white);
  border-color: #ee4d2d;
}

.shoppee-btn:hover {
  background-color: #d73c1f;
  border-color: #d73c1f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(238, 77, 45, 0.3);
}

.digital-btn {
  background-color: #4CAF50;
  color: var(--white);
  border-color: #4CAF50;
}

.digital-btn:hover {
  background-color: #3d8b40;
  border-color: #3d8b40;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.store-btn i {
  font-size: 1.2rem;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .novel-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
    padding: 35px;
  }
  
  .novel-image-container {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .novel-cover {
    width: 260px;
    height: 370px;
    margin: 0 auto;
  }
  
  .novel-content {
    width: 100%;
    align-items: center;
  }
  
  .price-row {
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
  }
  
  .store-buttons-row {
    justify-content: center;
    gap: 15px;
  }
  
  .store-btn {
    min-width: 150px;
    padding: 13px 25px;
  }
}

@media (max-width: 768px) {
  .novel-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 30px 25px;
  }
  
  .novel-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .novel-cover {
    width: 240px;
    height: 340px;
  }
  
  .novel-content {
    width: 100%;
    align-items: center;
  }
  
  .novel-header h3 {
    font-size: 1.8rem;
  }
  
  .price-row {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .price-column {
    width: 100%;
    max-width: 280px;
  }
  
  .price-label-bg {
    padding: 12px 25px;
    font-size: 1.1rem;
  }
  
  .novel-price {
    font-size: 1.8rem;
  }
  
  .store-buttons-row {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    gap: 15px;
  }
  
  .store-btn {
    width: 100%;
    min-width: auto;
    padding: 15px 25px;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .novel-row {
    gap: 60px;
    padding: 45px;
  }
  
  .novel-image-container {
    flex: 0 0 320px;
  }
  
  .novel-cover {
    width: 320px;
    height: 450px;
  }
  
  .price-row {
    gap: 80px;
  }
  
  .price-column {
    min-width: 180px;
  }
  
  .store-buttons-row {
    gap: 25px;
  }
  
  .store-btn {
    min-width: 180px;
    padding: 15px 30px;
  }
}