       :root {
            --phtn-brown-dark: #74543F;
            --phtn-brown-mid: #BE955D;
            --phtn-gold: #E2BD48;
            --phtn-red: #C41E2A;
            --phtn-red-dark: #9B1520;
            --phtn-black: #1a1a1a;
            --phtn-white: #FFFFFF;
            --phtn-bg: #FAF7F2;
            --phtn-bg-card: #FFFFFF;
            --phtn-bg-nav: rgba(255, 255, 255, 0.92);
            --phtn-text: #2D2D2D;
            --phtn-text-muted: #6B6B6B;
            --phtn-border: #E8E0D4;
            --phtn-input-bg: #F5F0E8;
            --phtn-shadow: 0 4px 24px rgba(116, 84, 63, 0.10);
            --phtn-shadow-lg: 0 12px 48px rgba(116, 84, 63, 0.15);
            --phtn-gradient-hero: linear-gradient(135deg, #74543F 0%, #5a3f2e 50%, #3a2518 100%);
            --phtn-gradient-gold: linear-gradient(135deg, #E2BD48, #BE955D);
            --phtn-gradient-red: linear-gradient(135deg, #C41E2A, #9B1520);
        }

        [data-bs-theme="dark"] {
            --phtn-bg: #141210;
            --phtn-bg-card: #1E1B17;
            --phtn-bg-nav: rgba(20, 18, 16, 0.95);
            --phtn-text: #F0EBE3;
            --phtn-text-muted: #A09888;
            --phtn-border: #3A342C;
            --phtn-input-bg: #2A2520;
            --phtn-shadow: 0 4px 24px rgba(0, 0, 0, 0.30);
            --phtn-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.40);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--phtn-bg);
            color: var(--phtn-text);
            transition: background-color 0.4s ease, color 0.4s ease;
            overflow-x: hidden;
        }

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

        ::-webkit-scrollbar-track {
            background: var(--phtn-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--phtn-brown-mid);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--phtn-brown-dark);
        }

        /* ===================== NAVBAR ===================== */
        .navbar-phtn {
            background: var(--phtn-bg-nav);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--phtn-border);
            padding: 0.6rem 0;
            transition: all 0.4s ease;
            z-index: 1050;
        }

        .navbar-phtn.scrolled {
            box-shadow: var(--phtn-shadow);
        }

        .navbar-phtn .navbar-brand img {
            height: 46px;
            transition: height 0.3s;
        }

        .navbar-phtn.scrolled .navbar-brand img {
            height: 38px;
        }

        .navbar-phtn .nav-link {
            color: var(--phtn-text);
            font-weight: 500;
            font-size: 0.875rem;
            padding: 0.5rem 1rem !important;
            border-radius: 8px;
            transition: all 0.25s ease;
            position: relative;
        }

        .navbar-phtn .nav-link:hover,
        .navbar-phtn .nav-link.active {
            color: var(--phtn-brown-dark);
            background: rgba(116, 84, 63, 0.08);
        }

        [data-bs-theme="dark"] .navbar-phtn .nav-link:hover,
        [data-bs-theme="dark"] .navbar-phtn .nav-link.active {
            color: var(--phtn-gold);
            background: rgba(226, 189, 72, 0.08);
        }

        .nav-link.btn-registrasi {
            background: var(--phtn-red) !important;
            color: #fff !important;
            font-weight: 600;
            padding: 0.45rem 1.25rem !important;
            border-radius: 50px !important;
            font-size: 0.8rem;
            letter-spacing: 0.02em;
        }

        .nav-link.btn-registrasi:hover {
            background: var(--phtn-red-dark) !important;
            transform: translateY(-1px);
        }

        .nav-link.btn-login {
            border: 1.5px solid var(--phtn-brown-mid);
            color: var(--phtn-brown-dark) !important;
            font-weight: 600;
            padding: 0.4rem 1.1rem !important;
            border-radius: 50px !important;
            font-size: 0.8rem;
        }

        [data-bs-theme="dark"] .nav-link.btn-login {
            border-color: var(--phtn-gold);
            color: var(--phtn-gold) !important;
        }

        /* Theme Toggle */
        .theme-toggle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1.5px solid var(--phtn-border);
            background: var(--phtn-bg-card);
            color: var(--phtn-text);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
        }

        .theme-toggle:hover {
            border-color: var(--phtn-gold);
            color: var(--phtn-gold);
            transform: rotate(20deg);
        }

        /* ===================== HERO CAROUSEL ===================== */
        .hero-carousel {
            position: relative;
            height: 100vh;
            min-height: 600px;
            max-height: 900px;
            overflow: hidden;
        }

        .hero-carousel .carousel-item {
            height: 100vh;
            min-height: 600px;
            max-height: 900px;
        }

        .hero-slide {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.35) saturate(0.8);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(26, 26, 26, 0.5) 0%,
                    rgba(116, 84, 63, 0.6) 50%,
                    rgba(26, 26, 26, 0.85) 100%);
            z-index: 2;
        }

        .hero-content {
            position: absolute;
            inset: 0;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }

        .hero-logo {
            width: 220px;
            height: auto;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.03em;
            line-height: 1.05;
            margin-bottom: 0.5rem;
            animation: fadeInUp 1s ease-out 0.15s both;
        }

        .hero-title .gold {
            color: var(--phtn-gold);
        }

        .hero-subtitle {
            font-size: clamp(0.9rem, 2vw, 1.25rem);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 1s ease-out 0.45s both;
        }

        .btn-hero-primary {
            background: var(--phtn-red);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.02em;
        }

        .btn-hero-primary:hover {
            background: var(--phtn-red-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(196, 30, 42, 0.4);
        }

        .btn-hero-secondary {
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--phtn-gold);
            color: var(--phtn-gold);
            transform: translateY(-2px);
        }

        /* Carousel indicators */
        .hero-carousel .carousel-indicators {
            bottom: 2rem;
            z-index: 5;
        }

        .hero-carousel .carousel-indicators [data-bs-target] {
            width: 32px;
            height: 4px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            transition: all 0.4s;
        }

        .hero-carousel .carousel-indicators .active {
            width: 48px;
            background: var(--phtn-gold);
        }

        /* Carousel controls */
        .hero-carousel .carousel-control-prev,
        .hero-carousel .carousel-control-next {
            width: 56px;
            height: 56px;
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            border-radius: 50%;
            margin: 0 1.5rem;
            opacity: 0;
            transition: all 0.4s;
        }

        .hero-carousel:hover .carousel-control-prev,
        .hero-carousel:hover .carousel-control-next {
            opacity: 1;
        }

        .hero-carousel .carousel-control-prev:hover,
        .hero-carousel .carousel-control-next:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 3.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            animation: bounce 2s infinite;
        }

        .scroll-indicator .mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 14px;
            position: relative;
        }

        .scroll-indicator .mouse::after {
            content: '';
            width: 4px;
            height: 8px;
            background: var(--phtn-gold);
            border-radius: 4px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s infinite;
        }

        /* ===================== SECTIONS COMMON ===================== */
        section {
            padding: 5rem 0;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--phtn-red);
            margin-bottom: 0.75rem;
        }

        .section-label::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--phtn-red);
            border-radius: 2px;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--phtn-text);
            letter-spacing: -0.025em;
            line-height: 1.15;
            margin-bottom: 1rem;
        }

        .section-desc {
            font-size: 1rem;
            font-weight: 300;
            color: var(--phtn-text-muted);
            max-width: 600px;
            line-height: 1.7;
        }

        .phtn-card {
            background: var(--phtn-bg-card);
            border: 1px solid var(--phtn-border);
            border-radius: 1rem;
            padding: 1.75rem;
            transition: all 0.35s ease;
            box-shadow: var(--phtn-shadow);
        }

        .phtn-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--phtn-shadow-lg);
            border-color: var(--phtn-brown-mid);
        }

        .divider-gold {
            width: 60px;
            height: 3px;
            background: var(--phtn-gradient-gold);
            border-radius: 3px;
            margin: 1rem 0;
        }

        /* ===================== COUNTDOWN ===================== */
        #countdown {
            background: var(--phtn-gradient-hero);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        #countdown::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .countdown-title {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            font-weight: 600;
            color: #fff;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .countdown-date {
            color: var(--phtn-gold);
            text-align: center;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: 2.5rem;
        }

        .countdown-grid {
            display: flex;
            justify-content: center;
            gap: 1.25rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .countdown-item {
            text-align: center;
            min-width: 100px;
        }

        .countdown-number {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            color: var(--phtn-gold);
            line-height: 1;
            text-shadow: 0 2px 12px rgba(226, 189, 72, 0.3);
        }

        .countdown-label {
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0.5rem;
        }

        .countdown-separator {
            font-size: 3rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.3);
            line-height: 1;
            align-self: flex-start;
            padding-top: 0.25rem;
        }

        /* ===================== TENTANG ===================== */
        #tentang .about-img-wrapper {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--phtn-shadow-lg);
        }

        #tentang .about-img-wrapper img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        #tentang .about-img-wrapper:hover img {
            transform: scale(1.05);
        }

        #tentang .about-img-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
        }

        .about-stat {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem;
            border-bottom: 1px solid var(--phtn-border);
        }

        .about-stat:last-child {
            border-bottom: none;
        }

        .about-stat-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(196, 30, 42, 0.08);
            color: var(--phtn-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        [data-bs-theme="dark"] .about-stat-icon {
            background: rgba(226, 189, 72, 0.1);
            color: var(--phtn-gold);
        }

        .about-stat-num {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--phtn-text);
            line-height: 1;
        }

        .about-stat-text {
            font-size: 0.8rem;
            color: var(--phtn-text-muted);
        }

        /* ===================== PANITIA ===================== */
        .panitia-card {
            text-align: center;
            padding: 2rem 1.25rem;
        }

        .panitia-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--phtn-brown-mid);
            margin-bottom: 1rem;
            transition: all 0.3s;
        }

        .panitia-card:hover .panitia-avatar {
            border-color: var(--phtn-gold);
            transform: scale(1.05);
        }

        .panitia-name {
            font-weight: 600;
            font-size: 1rem;
            color: var(--phtn-text);
            margin-bottom: 0.25rem;
        }

        .panitia-role {
            font-size: 0.8rem;
            color: var(--phtn-red);
            font-weight: 500;
        }

        /* ===================== ACARA ===================== */
        #acara {
            background: var(--phtn-input-bg);
        }

        .acara-timeline {
            position: relative;
            padding-left: 2rem;
        }

        .acara-timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--phtn-border);
        }

        .acara-item {
            position: relative;
            padding-bottom: 2rem;
            padding-left: 1.5rem;
        }

        .acara-item:last-child {
            padding-bottom: 0;
        }

        .acara-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 6px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--phtn-bg-card);
            border: 3px solid var(--phtn-brown-mid);
            z-index: 2;
            transition: all 0.3s;
        }

        .acara-item:hover::before {
            border-color: var(--phtn-gold);
            background: var(--phtn-gold);
            box-shadow: 0 0 0 4px rgba(226, 189, 72, 0.2);
        }

        .acara-time {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--phtn-red);
            letter-spacing: 0.05em;
            margin-bottom: 0.25rem;
        }

        .acara-title {
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--phtn-text);
            margin-bottom: 0.25rem;
        }

        .acara-desc {
            font-size: 0.875rem;
            color: var(--phtn-text-muted);
            font-weight: 300;
        }

        /* ===================== REGISTRASI ===================== */
        .form-phtn .form-control,
        .form-phtn .form-select {
            background: var(--phtn-input-bg);
            border: 1.5px solid var(--phtn-border);
            border-radius: 0.75rem;
            padding: 0.75rem 1rem;
            color: var(--phtn-text);
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .form-phtn .form-control:focus,
        .form-phtn .form-select:focus {
            border-color: var(--phtn-brown-mid);
            box-shadow: 0 0 0 3px rgba(190, 149, 93, 0.15);
            background: var(--phtn-bg-card);
        }

        .form-phtn .form-label {
            font-weight: 500;
            font-size: 0.85rem;
            color: var(--phtn-text);
            margin-bottom: 0.4rem;
        }

        .btn-phtn-primary {
            background: var(--phtn-red);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.02em;
        }

        .btn-phtn-primary:hover {
            background: var(--phtn-red-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(196, 30, 42, 0.35);
        }

        .btn-phtn-outline {
            background: transparent;
            color: var(--phtn-brown-dark);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            border: 1.5px solid var(--phtn-brown-mid);
            cursor: pointer;
            transition: all 0.3s;
        }

        [data-bs-theme="dark"] .btn-phtn-outline {
            color: var(--phtn-gold);
            border-color: var(--phtn-gold);
        }

        .btn-phtn-outline:hover {
            background: var(--phtn-brown-mid);
            color: #fff;
            transform: translateY(-2px);
        }

        /* ===================== LOKASI ===================== */
        #lokasi {
            background: var(--phtn-input-bg);
        }

        .map-wrapper {
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--phtn-shadow-lg);
            border: 2px solid var(--phtn-border);
        }

        .map-wrapper iframe {
            width: 100%;
            height: 400px;
            border: none;
            filter: grayscale(0.3) contrast(1.05);
            transition: filter 0.5s;
        }

        .map-wrapper:hover iframe {
            filter: grayscale(0) contrast(1);
        }

        .location-info-card {
            background: var(--phtn-bg-card);
            border: 1px solid var(--phtn-border);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--phtn-shadow);
        }

        .location-info-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1rem 0;
            border-bottom: 1px solid var(--phtn-border);
        }

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

        .location-info-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(116, 84, 63, 0.08);
            color: var(--phtn-brown-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        [data-bs-theme="dark"] .location-info-icon {
            background: rgba(226, 189, 72, 0.1);
            color: var(--phtn-gold);
        }

        /* ===================== KONTAK ===================== */
        .kontak-info {
            display: flex;
            gap: 1rem;
            align-items: center;
            padding: 1rem;
            border-radius: 0.75rem;
            transition: all 0.3s;
        }

        .kontak-info:hover {
            background: rgba(116, 84, 63, 0.05);
        }

        [data-bs-theme="dark"] .kontak-info:hover {
            background: rgba(226, 189, 72, 0.05);
        }

        .kontak-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--phtn-gradient-red);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* ===================== FOOTER ===================== */
        footer {
            background: var(--phtn-black);
            color: rgba(255, 255, 255, 0.6);
            padding: 3rem 0 1.5rem;
        }

        footer .footer-brand img {
            height: 42px;
        }

        footer h6 {
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        footer a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.25s;
        }

        footer a:hover {
            color: var(--phtn-gold);
        }

        footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
            margin-top: 2.5rem;
            font-size: 0.8rem;
        }

        .social-link {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s;
            font-size: 1rem;
        }

        .social-link:hover {
            border-color: var(--phtn-gold);
            color: var(--phtn-gold);
            transform: translateY(-2px);
        }

        /* ===================== LOGIN MODAL ===================== */
        .modal-content.phtn-modal {
            background: var(--phtn-bg-card);
            border: 1px solid var(--phtn-border);
            border-radius: 1.25rem;
            box-shadow: var(--phtn-shadow-lg);
        }

        .modal-content.phtn-modal .modal-header {
            border-bottom: 1px solid var(--phtn-border);
            padding: 1.5rem 2rem;
        }

        .modal-content.phtn-modal .modal-body {
            padding: 2rem;
        }

        .modal-content.phtn-modal .modal-footer {
            border-top: 1px solid var(--phtn-border);
            padding: 1rem 2rem;
        }

        .modal-content.phtn-modal .btn-close {
            filter: invert(0.3);
        }

        [data-bs-theme="dark"] .modal-content.phtn-modal .btn-close {
            filter: invert(1);
        }

        /* ===================== TOAST ===================== */
        .toast-phtn {
            background: var(--phtn-bg-card);
            border: 1px solid var(--phtn-border);
            border-left: 4px solid var(--phtn-red);
            border-radius: 0.75rem;
            box-shadow: var(--phtn-shadow-lg);
        }

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

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

        @keyframes bounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(8px);
            }
        }

        @keyframes scrollWheel {
            0% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }

            100% {
                opacity: 0;
                transform: translateX(-50%) translateY(10px);
            }
        }

        @keyframes pulse-gold {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(226, 189, 72, 0.3);
            }

            50% {
                box-shadow: 0 0 0 8px rgba(226, 189, 72, 0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom styles for Acara Tabs */
        .btn-acara-tab {
            background: var(--phtn-bg-card) !important;
            border: 1.5px solid var(--phtn-border) !important;
            color: var(--phtn-text) !important;
            font-weight: 600;
            font-size: 0.875rem;
            padding: 0.6rem 1.5rem !important;
            border-radius: 50px !important;
            transition: all 0.3s ease !important;
        }

        .btn-acara-tab:hover {
            border-color: var(--phtn-brown-mid) !important;
            color: var(--phtn-brown-dark) !important;
            transform: translateY(-1px);
        }

        [data-bs-theme="dark"] .btn-acara-tab:hover {
            color: var(--phtn-gold) !important;
            border-color: var(--phtn-gold) !important;
        }

        .btn-acara-tab.active {
            background: var(--phtn-gradient-gold) !important;
            border-color: transparent !important;
            color: #fff !important;
            box-shadow: 0 4px 12px rgba(190, 149, 93, 0.3) !important;
        }

        /* Improved Card Animations */
        .phtn-card {
            position: relative;
            overflow: hidden;
        }

        .phtn-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--phtn-gradient-gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .phtn-card:hover::after {
            transform: scaleX(1);
        }

        /* Micro-interactions for form controls */
        .form-phtn .form-control:focus,
        .form-phtn .form-select:focus {
            transform: translateY(-1px);
        }

        /* ===================== RESPONSIVE ===================== */
        @media (max-width: 991.98px) {
            .navbar-phtn .navbar-collapse {
                background: var(--phtn-bg-card);
                border: 1px solid var(--phtn-border);
                border-radius: 1rem;
                padding: 1rem;
                margin-top: 0.75rem;
                box-shadow: var(--phtn-shadow-lg);
            }

            .hero-carousel .carousel-control-prev,
            .hero-carousel .carousel-control-next {
                display: none;
            }

            .countdown-item {
                min-width: 70px;
            }

            .countdown-separator {
                font-size: 2rem;
                padding-top: 0;
            }
        }

        @media (max-width: 575.98px) {
            section {
                padding: 3.5rem 0;
            }

            .hero-logo {
                width: 160px;
            }

            .countdown-grid {
                gap: 0.75rem;
            }

            .countdown-number {
                font-size: 2rem;
            }

            .countdown-separator {
                display: none;
            }
        }