:root {
    --bg: #f8fafc;
    --text: #0f172a;
    --muted: #64748b;
    --card: #ffffff;
    --border: #e2e8f0;
    --primary: #7c3aed;
    --secondary: #ec4899;
    --dark: #0f172a;
    --footer: #111827;
    --soft: #ede9fe;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --nav-h: 82px;
}

html[data-theme="dark"] {
    --bg: #020617;
    --text: #f8fafc;
    --muted: #cbd5e1;
    --card: #0f172a;
    --border: rgba(148, 163, 184, 0.2);
    --primary: #8b5cf6;
    --secondary: #ec4899;
    --dark: #020617;
    --footer: #020617;
    --soft: #1e1b4b;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    text-decoration: none;
}

.site-main {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
}

.dunda-navbar {
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    min-height: var(--nav-h);
}

.site-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
}

.site-brand-text {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.dunda-navbar .nav-link {
    color: #fff;
    font-weight: 700;
}

.dunda-navbar .nav-link:hover,
.dunda-navbar .nav-link.active {
    color: #f5d0fe;
}

.custom-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.custom-toggler .navbar-toggler-icon {
    filter: invert(1);
}

.theme-toggle-btn {
    border: none;
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 700;
}

.dunda-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
}

.dunda-btn-primary:hover {
    color: #fff;
    opacity: 0.94;
}

.dunda-btn-outline {
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
}

.dunda-btn-outline-dark {
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.dunda-btn-outline-dark:hover {
    background: var(--primary);
    color: #fff;
}

.hero-section {
    padding: 16px 0 36px;
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 25%),
        radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.14), transparent 20%);
}

.hero-equal-row {
    min-height: calc(100vh - var(--nav-h) - 20px);
}

.hero-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beat-pill {
    display: inline-block;
    width: fit-content;
    padding: 32px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
    animation: beatPulse 1.7s infinite;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.02;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.04rem;
    max-width: 620px;
    margin-bottom: 20px;
}

.hero-search-wrap {
    margin-bottom: 18px;
}

.hero-search-input {
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
}

.hero-action-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mini-card,
.preview-card,
.content-card,
.package-card,
.about-card,
.about-highlight-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.mini-card {
    padding: 16px;
    text-align: center;
}

.mini-card h4 {
    margin: 0 0 6px;
    color: var(--primary);
    font-weight: 900;
}

.mini-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.hero-right-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    height: 100%;
}

.preview-card {
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preview-badge {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 12px;
    align-self: flex-start;
}

.preview-image,
.square-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--soft);
    color: var(--primary);
    font-weight: 800;
}

.preview-card h5 {
    margin: 12px 0 6px;
    font-weight: 800;
}

.preview-card p {
    margin: 0;
    color: var(--muted);
}

.content-section {
    padding: 72px 0;
}

.alt-section {
    background: rgba(124, 58, 237, 0.03);
}

.section-head {
    text-align: center;
    margin-bottom: 28px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 8px;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

.search-inline-wrap {
    max-width: 760px;
    margin: 0 auto 24px;
}

.section-search-input {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
}

.content-card {
    overflow: hidden;
    height: 100%;
}

.card-content-inner {
    padding: 16px;
}

.card-content-inner h5 {
    font-weight: 800;
    margin-bottom: 8px;
}

.card-content-inner p {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 0.94rem;
}

.recap-caption {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 12px;
}

.card-icon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.recap-icon-row {
    justify-content: flex-start;
    gap: 12px;
}

.icon-action-btn {
    width: 42px;
    min-height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.25s ease;
    padding: 0 12px;
}

.icon-action-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.action-count,
.like-count {
    font-size: 0.82rem;
    font-weight: 800;
}

.event-like-btn.liked,
.live-like-btn.liked {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

.comment-pulse,
.shared {
    transform: scale(1.06);
}

.see-more-wrap {
    text-align: center;
    margin-top: 28px;
}

.package-block + .package-block {
    margin-top: 32px;
}

.package-group-head {
    text-align: center;
    margin-bottom: 24px;
}

.package-group-head h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.package-group-head p {
    color: var(--muted);
    margin: 0;
}

.package-card {
    padding: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featured-package {
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.14);
}

.package-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.package-card h4 {
    font-weight: 900;
    margin-bottom: 10px;
}

.package-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 16px;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.package-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: var(--muted);
}

.package-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: 900;
}

.payment-box {
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: 16px;
    padding: 14px;
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
}

.payment-box strong {
    color: var(--text);
    font-weight: 900;
}

.payment-box span {
    color: var(--muted);
    font-weight: 700;
}

.about-card {
    padding: 24px;
    height: 100%;
    text-align: center;
}

.about-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    background: var(--soft);
    font-size: 1.6rem;
}

.about-card h5 {
    font-weight: 900;
    margin-bottom: 10px;
}

.about-card p {
    color: var(--muted);
    margin: 0;
}

.about-highlight-box {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 28px;
    text-align: center;
}

.about-highlight-box h3 {
    font-weight: 900;
    margin-bottom: 10px;
}

.about-highlight-box p {
    color: var(--muted);
    margin: 0;
}

.site-footer {
    background: var(--footer);
    color: #fff;
    padding: 60px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 26px;
    margin-bottom: 24px;
}

.footer-top h3,
.footer-top h4 {
    margin-bottom: 12px;
    font-weight: 800;
}

.footer-top p,
.footer-links-block a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-block a:hover {
    color: #fff;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.footer-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    padding: 6px;
}

.footer-slogan {
    font-weight: 800;
    color: #fff !important;
    margin: 0 0 6px;
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-legal-links a {
    color: #fff;
    font-weight: 700;
}

.footer-legal-links a:hover {
    color: #f5d0fe;
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 800;
    margin-top: 10px;
}

.footer-map-link:hover {
    color: #fff;
    opacity: 0.94;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-advanced {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.25s ease;
    color: #fff;
    font-size: 1rem;
}

.footer-social-icon:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.footer-store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.store-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.store-link i {
    font-size: 1.1rem;
}

@keyframes beatPulse {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.04); }
    45% { transform: scale(0.98); }
    70% { transform: scale(1.05); }
}
.event-comment-box {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.event-comment-textarea {
    width: 100%;
    min-height: 90px;
    resize: vertical;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    padding: 12px 14px;
    outline: none;
}

.event-comment-textarea:focus {
    border-color: var(--primary);
}

.action-count,
.like-count {
    font-size: 0.82rem;
    font-weight: 800;
}

.event-like-btn.liked,
.live-like-btn.liked {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

.comment-pulse,
.shared {
    transform: scale(1.06);
}
