/* =====================================================
   FORCE FULL-WIDTH – ASTRA OVERRIDE (HAPPYLAND ONLY)
   ===================================================== */

/* Astra main content wrappers */
.page-template-page-happyland-rides .site-content,
.page-template-page-happyland-map .site-content,
.page-template-page-happyland-rides .ast-container,
.page-template-page-happyland-map .ast-container,
.page-template-page-happyland-rides .content-area,
.page-template-page-happyland-map .content-area,
.page-template-page-happyland-rides .site-main,
.page-template-page-happyland-map .site-main {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Kill Astra default 20px body padding on mobile */
.page-template-page-happyland-rides body,
.page-template-page-happyland-map body {
    padding: 0 !important;
}

/* TOP SCROLL BAR */
.top-scroll-bar-imp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 100;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* SCROLL TRACK */
.scroll-text-imp {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: scroll-right-to-left 15s linear infinite;
  will-change: transform;
}

/* TEXT */
.scroll-text-imp span {
  color: #fff !important;
  padding: 0 12px;
  line-height: 1;
}

/* SEPARATOR */
.separator {
  color: #fff !important;
}

/* ANIMATION - Right to Left */
@keyframes scroll-right-to-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .top-scroll-bar-imp {
    height: 45px;
    font-size: 16px;
  }
}

/*scroll header*/


/* Ensure HappyLand fills screen edge-to-edge */
#happyland-app {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Controlled inner spacing (content only) */
#happyland-app .rides-container {
    padding: 16px;
}

@media (min-width: 1024px) {
    #happyland-app .rides-container {
        padding: 24px;
    }
}


/* HappyLand Theme Styles - Scoped to prevent conflicts */
#happyland-app * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#happyland-app {
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    overflow: auto;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* ============================================
   VIEW TOGGLE BAR
   ============================================ */
#happyland-app .view-toggle-bar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    background: transparent;
    border: none;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: none;
    margin: 40px 0 24px;
    padding: 0;
}

#happyland-app .toggle-container {
    display: flex;
    gap: 8px;
    background: transparent;
    padding: 0;
    border-radius: 50px;
}

#happyland-app .toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#happyland-app .toggle-btn .icon {
    font-size: 20px;
}

#happyland-app .toggle-btn:hover {
    background: rgba(51, 77, 207, 0.1);
    color: #00A9AA;
}

#happyland-app .toggle-btn.active {
    background: linear-gradient(135deg, #00A9AA 0%, #008A8B 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(51, 77, 207, 0.3);
}

/* ============================================
   VIEWS CONTAINER
   ============================================ */
#happyland-app .rides-view,
#happyland-app .map-view {
    display: none;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

#happyland-app .rides-view.active {
    display: block;
}

#happyland-app .map-view.active {
    display: flex;
}

/* ============================================
   RIDES VIEW STYLES
   ============================================ */
#happyland-app .rides-view {
    overflow-y: auto;
}

#happyland-app .rides-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
}

/* Filter Section */
#happyland-app .filter-section {
    margin-bottom: 30px;
}

#happyland-app .type-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#happyland-app .type-btn {
    padding: 14px 32px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: white;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

#happyland-app .type-btn .icon {
    font-size: 18px;
}

#happyland-app .type-btn:hover {
    border-color: #00A9AA;
    color: #00A9AA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(51, 77, 207, 0.15);
}

#happyland-app .type-btn.active {
    background: linear-gradient(135deg, #00A9AA 0%, #008A8B 100%);
    color: white;
    border-color: #00A9AA;
    box-shadow: 0 4px 16px rgba(51, 77, 207, 0.3);
}

/* Ride Count */
#happyland-app .ride-count {
    text-align: left;
    margin-bottom: 20px;
}

#happyland-app .ride-count p {
    color: #666;
    font-size: 15px;
    font-weight: 600;
}

#happyland-app .ride-count span {
    color: #00A9AA;
    font-weight: 700;
}

/* Rides Grid */
#happyland-app .rides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding-bottom: 40px;
}

/* Ride Card */
#happyland-app .ride-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.5s ease;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

#happyland-app .ride-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

#happyland-app .ride-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

#happyland-app .ride-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#happyland-app .ride-item:hover .ride-image {
    transform: scale(1.1);
}

#happyland-app .ride-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    backdrop-filter: blur(10px);
}

#happyland-app .ride-category-badge.water {
    background: #00A9AA;
}

#happyland-app .ride-category-badge.land {
    background: rgba(76, 175, 80, 0.9);
}

#happyland-app .ride-category-badge.kids {
    background: #FF007F;
}

#happyland-app .ride-category-badge.new {
    background: #FED11B;
}

#happyland-app .ride-thrill-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    gap: 4px;
}

#happyland-app .ride-thrill-badge .star {
    color: #FED11B;
    font-size: 14px;
}

#happyland-app .ride-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

#happyland-app .ride-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

#happyland-app .ride-tag {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#happyland-app .ride-tag.fairy-tale {
    background: #FFE5F0;
    color: #FF69B4;
}

#happyland-app .ride-tag.spinning {
    background: #E5F0FF;
    color: #00A9AA;
}

#happyland-app .ride-tag.mini {
    background: #FFF3E0;
    color: #FF9800;
}

#happyland-app .ride-tag.hilly {
    background: #E8F5E9;
    color: #4CAF50;
}

#happyland-app .ride-tag.merry {
    background: #F3E5F5;
    color: #9C27B0;
}

#happyland-app .ride-tag.self {
    background: #E5F0FF;
    color: #00A9AA;
}


#happyland-app .ride-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

#happyland-app .ride-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    flex: 1;
}

#happyland-app .ride-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

#happyland-app .ride-number {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

#happyland-app .empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

#happyland-app .empty-state .icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

#happyland-app .empty-state h3 {
    font-size: 20px;
    color: #666;
    margin-bottom: 10px;
}

h3,h2{
    font-family: 'McLaren', cursive;
}

/* ============================================
   MAP VIEW STYLES
   ============================================ */
#happyland-app .map-view {
    /* background: linear-gradient(135deg, #fff 0%, #d4e8ea 100%); */
    flex-direction: row;
    min-height: 100vh;
    height: auto;
}

#happyland-app .map-main-container {
    flex: 1;
    width: 80%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 100px;
}

#happyland-app .map-container {
    width: 100%;
    flex: 1;
    padding: 2%;
    background: linear-gradient(135deg, #fff 0%, #d4e8ea 100%);
    background-image: url('/wp-content/themes/ridemap/assets/images/bg.jpeg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#happyland-app #markers-container {
    position: absolute;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    pointer-events: auto;
}

#happyland-app .ride-marker {
    position: absolute;
    width: 20px;
    height: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: bobbing 3s ease-in-out infinite;
    z-index: 100;
    transform: translate(-50%, -100%);
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
    pointer-events: auto;
}

#happyland-app .ride-marker:hover {
    transform: translate(-50%, -100%) scale(1.25);
    z-index: 400;
    animation: none;
}

#happyland-app .ride-marker.active {
    z-index: 450;
    transform: translate(-50%, -100%) scale(1.3);
}

#happyland-app .ride-marker.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -100%) scale(0);
}

#happyland-app .marker-pin {
    width: 100%;
    height: 100%;
    background: var(--pin-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

#happyland-app .marker-pin::before {
    content: '';
    position: absolute;
    width: 65%;
    height: 65%;
    background: white;
    border-radius: 50%;
    z-index: 1;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
}

#happyland-app .marker-icon {
    transform: rotate(45deg);
    font-size: 12px;
    position: relative;
    z-index: 2;
}

#happyland-app .control-dock {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 2px solid #00A9AA;
    box-shadow: 0 10px 40px rgba(51, 77, 207, 0.3);
    z-index: 1500;
}

#happyland-app .dock-button {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#happyland-app .dock-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

#happyland-app .dock-button.active {
    background: linear-gradient(145deg, #FED11B, #F5C400);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(254, 209, 27, 0.5);
}

#happyland-app .dock-button .icon {
    font-size: 20px;
}

#happyland-app .dock-button .label {
    font-size: 9px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

#happyland-app .dock-button.active .icon,
#happyland-app .dock-button.active .label {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ============================================
   RIDE SIDEBAR - REFINED
   ============================================ */
#happyland-app .ride-sidebar {
    width: 400px;
    max-width: 400px;
    height: 100vh;
    background: white;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

#happyland-app .ride-sidebar.show {
    transform: translateX(0);
}

#happyland-app .sidebar-header {
    background: linear-gradient(135deg, #00A9AA 0%, #008A8B 100%);
    color: white;
    padding: 24px;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
}

#happyland-app .sidebar-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.2;
}

#happyland-app .sidebar-header p {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

#happyland-app .sidebar-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
}

#happyland-app .sidebar-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

#happyland-app .sidebar-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    overflow-y: auto;
    scroll-behavior: smooth;
}

#happyland-app .sidebar-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    flex-shrink: 0;
}

#happyland-app .sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

#happyland-app .sidebar-description {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    flex-shrink: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#happyland-app .thrill-level {
    margin: 0;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    flex-shrink: 0;
}

#happyland-app .thrill-level label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
}

#happyland-app .stars {
    display: flex;
    gap: 6px;
}

#happyland-app .star {
    color: #FED11B;
    font-size: 22px;
    text-shadow: 0 2px 4px rgba(254, 209, 27, 0.3);
}

#happyland-app .star.empty {
    color: #ddd;
    text-shadow: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bobbing {
    0%, 100% { transform: translate(-50%, -100%) translateY(0); }
    50% { transform: translate(-50%, -100%) translateY(-12px); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (min-width: 1600px) {
    #happyland-app .rides-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

/* Desktop */
@media (max-width: 1400px) {
    #happyland-app .rides-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    #happyland-app .ride-sidebar {
        width: 360px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    #happyland-app .rides-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }
    
    #happyland-app .map-view {
        flex-direction: column;
        min-height: 100vh;
        height: 100vh;
    }
    
    #happyland-app .map-main-container {
        width: 100%;
        height: 50vh;
        min-height: 50vh;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
    }
    
    #happyland-app .ride-sidebar {
        width: 100%;
        max-width: 100%;
        height: 50vh;
        transform: translateY(100%);
        position: relative;
    }
    
    #happyland-app .ride-sidebar.show {
        transform: translateY(0);
    }
    
    #happyland-app .control-dock {
        position: relative; /* CHANGE from absolute */
        bottom: auto; /* CHANGE from 10px */
        left: auto; /* CHANGE from 50% */
        transform: none; /* CHANGE from translateX(-50%) */
        margin: 16px auto 0; /* ADD THIS - creates space above map */
        order: -1; /* ADD THIS - moves dock above map-container */
        padding: 6px 16px;
        gap: 8px;
    }
    
    #happyland-app .dock-button {
        width: 48px;
        height: 48px;
    }
    
    #happyland-app .dock-button .icon {
        font-size: 18px;
    }
    
    #happyland-app .dock-button .label {
        font-size: 8px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    #happyland-app .view-toggle-bar {
        margin: 24px 0 16px;
    }
    
    #happyland-app .toggle-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    #happyland-app .rides-container {
        padding: 20px;
    }
    
    #happyland-app .rides-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    
    #happyland-app .type-filters {
        gap: 8px;
    }
    
    #happyland-app .type-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    #happyland-app .map-view {
        min-height: 100vh;
        height: 100vh;
    }
    
    #happyland-app .map-main-container {
        height: 50vh;
        min-height: 50vh;
    }
    
    #happyland-app .ride-sidebar {
        height: 50vh;
    }
    
    #happyland-app .sidebar-header h2 {
        font-size: 20px;
    }
    
    #happyland-app .sidebar-image {
        height: 180px;
        font-size: 64px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    #happyland-app .view-toggle-bar {
        margin: 16px 0 12px;
    }
    
    #happyland-app .toggle-btn {
        padding: 8px 20px;
        font-size: 13px;
        gap: 6px;
    }
    
    #happyland-app .toggle-btn .icon {
        font-size: 18px;
    }
    
    #happyland-app .rides-container {
        padding: 16px;
    }
    
    #happyland-app .type-btn {
        flex: 1;
        min-width: calc(50% - 4px);
        padding: 10px 16px;
        font-size: 13px;
    }
    
    #happyland-app .rides-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    #happyland-app .ride-image-container {
        height: 180px;
    }
    
    #happyland-app .map-view {
        min-height: 100vh;
        height: 100vh;
    }
    
    #happyland-app .map-main-container {
        height: 50vh;
        min-height: 50vh;
    }
    
    #happyland-app .map-container {
        flex: 1; 
    }
    
    #happyland-app .ride-sidebar {
        height: 50vh;
    }
    
    #happyland-app .sidebar-header {
        padding: 20px;
    }
    
    #happyland-app .sidebar-header h2 {
        font-size: 18px;
        padding-right: 40px;
    }
    
    #happyland-app .sidebar-body {
        padding: 20px;
        gap: 16px;
    }
    
    #happyland-app .sidebar-image {
        height: 140px;
        font-size: 56px;
    }
    
    #happyland-app .control-dock {
        bottom: 8px;
        padding: 4px 12px;
        gap: 6px;
    }
    
    #happyland-app .dock-button {
        width: 44px;
        height: 44px;
    }
    
    #happyland-app .dock-button .icon {
        font-size: 16px;
    }
    
    #happyland-app .dock-button .label {
        font-size: 7px;
    }
    
    #happyland-app .ride-marker {
        width: 24px;
        height: 30px;
    }
    
    #happyland-app .marker-icon {
        font-size: 10px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    #happyland-app .toggle-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    #happyland-app .type-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    #happyland-app .rides-container {
        padding: 12px;
    }
    
    #happyland-app .sidebar-header h2 {
        font-size: 16px;
    }
    
    #happyland-app .sidebar-description {
        font-size: 14px;
    }
}

/* ============================================
   IMAGE CAROUSEL STYLES
   ============================================ */
#happyland-app .image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#happyland-app .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border-radius: 16px;
}

#happyland-app .carousel-image.active {
    opacity: 1;
    z-index: 1;
}

#happyland-app .carousel-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

#happyland-app .carousel-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

#happyland-app .carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

#happyland-app .carousel-indicators .indicator.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

