        :root {
            --event-primary: #163d75;
            --event-primary-dark: #071d3b;
            --event-secondary: #4d79b9;
            --event-gold: #d8aa4c;
            --event-gold-light: #f4d991;
            --event-cream: #fffaf0;
            --event-soft-blue: #edf5ff;
            --event-text: #253247;
            --event-muted: #69758a;
            --event-white: #ffffff;
            --event-radius: 20px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Nunito", sans-serif;
            color: var(--event-text);
            background:
                radial-gradient(circle at 10% 10%, rgba(244, 217, 145, 0.25), transparent 28%),
                radial-gradient(circle at 90% 20%, rgba(77, 121, 185, 0.18), transparent 30%),
                linear-gradient(135deg, #fffdf8 0%, #f4f8ff 50%, #fffaf0 100%);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        .event-title-font {
            font-family: "Archivo Black", sans-serif;
            letter-spacing: -0.4px;
        }

        .church-event-page {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
        }

        .church-event-page::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -3;
            opacity: 0.5;
            background-image:
                linear-gradient(rgba(22, 61, 117, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(22, 61, 117, 0.035) 1px, transparent 1px);
            background-size: 44px 44px;
            mask-image: linear-gradient(to bottom, black, transparent 85%);
        }

        .smooth-line {
            position: fixed;
            z-index: -2;
            width: 760px;
            height: 180px;
            border: 2px solid rgba(216, 170, 76, 0.15);
            border-radius: 50%;
            transform: rotate(-12deg);
            pointer-events: none;
        }

        .smooth-line.line-one {
            top: 120px;
            left: -330px;
            animation: lineMoveOne 14s ease-in-out infinite alternate;
        }

        .smooth-line.line-two {
            right: -320px;
            bottom: 100px;
            border-color: rgba(77, 121, 185, 0.14);
            transform: rotate(15deg);
            animation: lineMoveTwo 16s ease-in-out infinite alternate;
        }

        .floating-orb {
            position: fixed;
            z-index: -2;
            border-radius: 50%;
            filter: blur(6px);
            opacity: 0.65;
            pointer-events: none;
        }

        .floating-orb.orb-one {
            width: 170px;
            height: 170px;
            top: 100px;
            right: 8%;
            background: rgba(244, 217, 145, 0.34);
            animation: floatOrb 8s ease-in-out infinite;
        }

        .floating-orb.orb-two {
            width: 220px;
            height: 220px;
            bottom: 130px;
            left: 4%;
            background: rgba(135, 175, 230, 0.22);
            animation: floatOrb 10s ease-in-out infinite reverse;
        }

        @keyframes lineMoveOne {
            from {
                transform: translateX(0) rotate(-12deg);
            }

            to {
                transform: translateX(90px) translateY(20px) rotate(-8deg);
            }
        }

        @keyframes lineMoveTwo {
            from {
                transform: translateX(0) rotate(15deg);
            }

            to {
                transform: translateX(-90px) translateY(-25px) rotate(11deg);
            }
        }

        @keyframes floatOrb {
            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-25px) scale(1.08);
            }
        }

        .event-hero {
            position: relative;
            padding: 25px 0 25px;
        }

        .event-hero-frame {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 70px rgba(7, 29, 59, 0.22);
            isolation: isolate;
        }

        .event-hero-frame::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(90deg, rgba(5, 22, 48, 0.96) 0%, rgba(9, 39, 78, 0.84) 45%, rgba(8, 30, 60, 0.32) 100%),
                linear-gradient(0deg, rgba(4, 17, 37, 0.55), transparent 65%);
        }

        .event-hero-frame::after {
            content: "";
            position: absolute;
            inset: 12px;
            z-index: 3;
            border: 1px solid rgba(255, 255, 255, 0.24);
            border-radius: 22px;
            pointer-events: none;
        }

        .event-hero-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            animation: heroZoom 18s ease-in-out infinite alternate;
        }

        @keyframes heroZoom {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.08);
            }
        }

        .event-hero-content {
            position: relative;
            z-index: 4;
            display: flex;
            align-items: center;
            padding: 70px;
        }

        .event-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 999px;
            color: var(--event-gold-light);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(14px);
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }

        .event-hero-title {
            max-width: 100%;
            margin: 24px 0 20px;
            color: var(--event-white);
            font-size: clamp(2.5rem, 5.5vw, 3.3rem);
            line-height: 1.05;
            text-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        .event-hero-title span {
            display: block;
            color: var(--event-gold-light);
        }

        .event-hero-description {
            max-width: 100%;
            margin-bottom: 28px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.08rem;
            line-height: 1.85;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 12px;
            color: var(--event-white);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(12px);
        }

        .hero-meta-item i {
            color: var(--event-gold-light);
        }

        .event-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 54px;
            padding: 13px 24px;
            border: 0;
            border-radius: 12px;
            font-weight: 800;
            text-decoration: none;
            overflow: hidden;
            transition: 0.35s ease;
        }

        .event-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -130%;
            width: 75%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.42),
                transparent
            );
            transform: skewX(-22deg);
            transition: 0.7s ease;
        }

        .event-btn:hover::before {
            left: 150%;
        }

        .event-btn-primary {
            color: var(--event-primary-dark);
            background: linear-gradient(135deg, var(--event-gold-light), var(--event-gold));
            box-shadow: 0 12px 30px rgba(216, 170, 76, 0.3);
        }

        .event-btn-primary:hover {
            color: var(--event-primary-dark);
            transform: translateY(-4px);
            box-shadow: 0 18px 34px rgba(216, 170, 76, 0.4);
        }

        .event-btn-light {
            color: var(--event-white);
            border: 1px solid rgba(255, 255, 255, 0.32);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .event-btn-light:hover {
            color: var(--event-white);
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-4px);
        }

        .hero-side-date {
            position: absolute;
            z-index: 5;
            right: 45px;
            bottom: 42px;
            width: 155px;
            padding: 20px 18px;
            text-align: center;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.91);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(18px);
        }

        .hero-side-date .month {
            display: block;
            color: var(--event-primary);
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .hero-side-date .day {
            display: block;
            margin: 2px 0;
            color: var(--event-primary-dark);
            font-family: "Archivo Black", sans-serif;
            font-size: 3.6rem;
            line-height: 1;
        }

        .hero-side-date .year {
            color: var(--event-muted);
            font-weight: 800;
        }

        .countdown-wrapper {
            position: relative;
            z-index: 10;
            margin-top: -76px;
        }

        .countdown-panel {
            position: relative;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.85);
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.78);
            box-shadow: 0 24px 60px rgba(32, 65, 108, 0.16);
            backdrop-filter: blur(20px);
            overflow: hidden;
        }

        .countdown-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 10%;
            width: 80%;
            height: 3px;
            background: linear-gradient(
                90deg,
                transparent,
                var(--event-gold),
                var(--event-primary),
                transparent
            );
        }

        .countdown-intro {
            height: 100%;
            padding: 10px 18px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .countdown-intro small {
            color: var(--event-gold);
            font-weight: 900;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .countdown-intro h3 {
            margin: 5px 0 0;
            color: var(--event-primary-dark);
            font-size: 1.65rem;
        }

        .countdown-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .countdown-box {
            position: relative;
            padding: 17px 10px;
            text-align: center;
            border-radius: 14px;
            background: linear-gradient(145deg, #ffffff, #edf4ff);
            border: 1px solid rgba(22, 61, 117, 0.09);
            box-shadow: 0 10px 22px rgba(22, 61, 117, 0.08);
            transition: 0.3s ease;
        }

        .countdown-box:hover {
            transform: translateY(-5px);
        }

        .countdown-number {
            display: block;
            color: var(--event-primary);
            font-family: "Archivo Black", sans-serif;
            font-size: 1.9rem;
            line-height: 1;
        }

        .countdown-text {
            display: block;
            margin-top: 7px;
            color: var(--event-muted);
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .section-space {
            padding: 95px 0;
        }

        .section-heading {
            margin-bottom: 42px;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 13px;
            color: var(--event-gold);
            font-size: 0.82rem;
            font-weight: 900;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .section-kicker::before {
            content: "";
            width: 35px;
            height: 2px;
            border-radius: 10px;
            background: linear-gradient(90deg, var(--event-gold), transparent);
        }

        .section-heading h2 {
            margin: 0 0 15px;
            color: var(--event-primary-dark);
            font-size: clamp(2rem, 4vw, 3.2rem);
        }

        .section-heading p {
            max-width: 720px;
            margin: 0;
            color: var(--event-muted);
            font-size: 1.02rem;
            line-height: 1.8;
        }

        .gloss-card {
            position: relative;
            height: 100%;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: var(--event-radius);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.82));
            box-shadow: 0 20px 45px rgba(35, 67, 109, 0.1);
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .gloss-card::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -60px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(244, 217, 145, 0.38), transparent 68%);
        }

        .gloss-card::after {
            content: "";
            position: absolute;
            left: 10%;
            bottom: 0;
            width: 80%;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(216, 170, 76, 0.7),
                transparent
            );
        }

        .gloss-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 55px rgba(35, 67, 109, 0.16);
        }

        .info-icon {
            width: 58px;
            height: 58px;
            margin-bottom: 19px;
            display: grid;
            place-items: center;
            border-radius: 15px;
            color: var(--event-white);
            font-size: 1.35rem;
            background: linear-gradient(135deg, var(--event-primary), var(--event-secondary));
            box-shadow: 0 12px 25px rgba(22, 61, 117, 0.24);
        }

        .gloss-card h4 {
            color: var(--event-primary-dark);
            font-size: 1.25rem;
        }

        .gloss-card p {
            margin-bottom: 0;
            color: var(--event-muted);
            line-height: 1.75;
        }

        .content-panel {
            position: relative;
            padding: 42px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 25px 55px rgba(32, 65, 108, 0.11);
            backdrop-filter: blur(18px);
        }

        .event-about-image {
            position: relative;
            height: 100%;
            min-height: 460px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 24px 48px rgba(7, 29, 59, 0.18);
        }

        .event-about-image img {
            width: 100%;
            height: 100%;
            min-height: 460px;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .event-about-image:hover img {
            transform: scale(1.06);
        }

        .event-about-image::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, transparent 48%, rgba(6, 28, 58, 0.9));
        }

        .image-caption {
            position: absolute;
            z-index: 2;
            left: 27px;
            right: 27px;
            bottom: 25px;
            color: var(--event-white);
        }

        .image-caption span {
            display: block;
            margin-bottom: 5px;
            color: var(--event-gold-light);
            font-weight: 800;
        }

        .image-caption h4 {
            margin: 0;
            font-size: 1.55rem;
        }

        .about-list {
            display: grid;
            gap: 13px;
            margin: 26px 0 0;
        }

        .about-list-item {
            display: flex;
            gap: 13px;
            align-items: flex-start;
            padding: 14px 16px;
            border-radius: 13px;
            background: linear-gradient(90deg, rgba(237, 245, 255, 0.9), rgba(255, 250, 240, 0.7));
            border: 1px solid rgba(22, 61, 117, 0.07);
        }

        .about-list-item i {
            margin-top: 3px;
            color: var(--event-gold);
        }

        .schedule-section {
            position: relative;
            background:
                radial-gradient(circle at 10% 10%, rgba(244, 217, 145, 0.15), transparent 25%),
                linear-gradient(135deg, var(--event-primary-dark), #123d72);
            overflow: hidden;
        }

        .schedule-section::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.16;
            background-image:
                linear-gradient(115deg, transparent 45%, rgba(255, 255, 255, 0.13) 46%, transparent 48%);
            background-size: 80px 80px;
        }

        .schedule-section .section-heading h2 {
            color: var(--event-white);
        }

        .schedule-section .section-heading p {
            color: rgba(255, 255, 255, 0.7);
        }

        .schedule-card {
            position: relative;
            display: grid;
            grid-template-columns: 140px 1fr auto;
            gap: 24px;
            align-items: center;
            padding: 24px;
            margin-bottom: 16px;
            border-radius: 17px;
            background: rgba(255, 255, 255, 0.09);
            border: 1px solid rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(16px);
            transition: 0.35s ease;
        }

        .schedule-card:hover {
            transform: translateX(8px);
            background: rgba(255, 255, 255, 0.14);
            border-color: rgba(244, 217, 145, 0.45);
        }

        .schedule-time {
            color: var(--event-gold-light);
            font-family: "Archivo Black", sans-serif;
            font-size: 1.05rem;
        }

        .schedule-content h4 {
            margin: 0 0 6px;
            color: var(--event-white);
            font-size: 1.15rem;
        }

        .schedule-content p {
            margin: 0;
            color: rgba(255, 255, 255, 0.66);
        }

        .schedule-number {
            width: 45px;
            height: 45px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: var(--event-primary-dark);
            font-family: "Archivo Black", sans-serif;
            background: linear-gradient(135deg, var(--event-gold-light), var(--event-gold));
        }

        .speaker-card {
            position: relative;
            padding: 18px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.83);
            border: 1px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 20px 45px rgba(32, 65, 108, 0.1);
            overflow: hidden;
            transition: 0.35s ease;
        }

        .speaker-card:hover {
            transform: translateY(-8px);
        }

        .speaker-image {
            position: relative;
            height: 330px;
            border-radius: 17px;
            overflow: hidden;
        }

        .speaker-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .speaker-card:hover .speaker-image img {
            transform: scale(1.07);
        }

        .speaker-badge {
            position: absolute;
            left: 15px;
            bottom: 15px;
            padding: 8px 12px;
            border-radius: 9px;
            color: var(--event-primary-dark);
            background: rgba(255, 255, 255, 0.9);
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
            backdrop-filter: blur(12px);
        }

        .speaker-content {
            padding: 21px 8px 8px;
        }

        .speaker-content h4 {
            margin: 0 0 6px;
            color: var(--event-primary-dark);
        }

        .speaker-content p {
            margin: 0;
            color: var(--event-muted);
        }

        .location-panel {
            position: relative;
            min-height: 430px;
            display: flex;
            align-items: flex-end;
            padding: 35px;
            border-radius: 25px;
            overflow: hidden;
            background:
                linear-gradient(0deg, rgba(6, 28, 58, 0.95), rgba(6, 28, 58, 0.15)),
                url("https://images.unsplash.com/photo-1507692049790-de58290a4334?auto=format&fit=crop&w=1400&q=85") center/cover;
            box-shadow: 0 25px 55px rgba(7, 29, 59, 0.2);
        }

        .location-panel::after {
            content: "";
            position: absolute;
            inset: 13px;
            border: 1px solid rgba(255, 255, 255, 0.23);
            border-radius: 18px;
            pointer-events: none;
        }

        .location-content {
            position: relative;
            z-index: 2;
            max-width: 560px;
            color: var(--event-white);
        }

        .location-content h3 {
            font-size: 2rem;
        }

        .location-content p {
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.7;
        }

        .registration-panel {
            position: relative;
            padding: 42px;
            border-radius: 25px;
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.87));
            border: 1px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 28px 60px rgba(32, 65, 108, 0.14);
            overflow: hidden;
        }

        .registration-panel::before {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            top: -120px;
            right: -90px;
            border-radius: 50%;
            border: 32px solid rgba(216, 170, 76, 0.11);
        }

        .event-form-label {
            margin-bottom: 8px;
            color: var(--event-primary-dark);
            font-weight: 800;
        }

        .event-form-control,
        .event-form-select {
            min-height: 54px;
            border: 1px solid rgba(22, 61, 117, 0.12);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.84);
            box-shadow: inset 0 1px 2px rgba(22, 61, 117, 0.04);
        }

        .event-form-control:focus,
        .event-form-select:focus {
            border-color: var(--event-gold);
            box-shadow: 0 0 0 4px rgba(216, 170, 76, 0.13);
        }

        textarea.event-form-control {
            min-height: 125px;
            resize: vertical;
        }

        .register-summary {
            position: relative;
            height: 100%;
            padding: 38px;
            border-radius: 25px;
            color: var(--event-white);
            background:
                radial-gradient(circle at 85% 10%, rgba(244, 217, 145, 0.22), transparent 26%),
                linear-gradient(145deg, var(--event-primary-dark), var(--event-primary));
            box-shadow: 0 28px 60px rgba(7, 29, 59, 0.25);
            overflow: hidden;
        }

        .register-summary::before {
            content: "";
            position: absolute;
            width: 300px;
            height: 120px;
            left: -80px;
            bottom: -55px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: rotate(-8deg);
        }

        .register-summary h3 {
            font-size: 2.2rem;
        }

        .register-summary p {
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.8;
        }

        .summary-point {
            display: flex;
            gap: 14px;
            margin-top: 22px;
        }

        .summary-point-icon {
            flex: 0 0 46px;
            height: 46px;
            display: grid;
            place-items: center;
            border-radius: 12px;
            color: var(--event-primary-dark);
            background: linear-gradient(135deg, var(--event-gold-light), var(--event-gold));
        }

        .summary-point h5 {
            margin: 0 0 4px;
            font-size: 1rem;
        }

        .summary-point span {
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.92rem;
        }

        .share-strip {
            padding: 24px 0 65px;
        }

        .share-panel {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 25px 30px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 18px 40px rgba(32, 65, 108, 0.1);
            backdrop-filter: blur(16px);
        }

        .share-panel h4 {
            margin: 0 0 4px;
            color: var(--event-primary-dark);
            font-size: 1.1rem;
        }

        .share-panel p {
            margin: 0;
            color: var(--event-muted);
        }

        .social-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            display: grid;
            place-items: center;
            border-radius: 12px;
            color: var(--event-white);
            text-decoration: none;
            transition: 0.3s ease;
        }

        .social-btn:hover {
            color: var(--event-white);
            transform: translateY(-5px) rotate(4deg);
        }

        .facebook {
            background: #1877f2;
        }

        .whatsapp {
            background: #20b858;
        }

        .instagram {
            background: linear-gradient(135deg, #feda75, #d62976, #4f5bd5);
        }

        .youtube {
            background: #ff0033;
        }

        .back-to-top {
            position: fixed;
            z-index: 50;
            right: 20px;
            bottom: 20px;
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border: 0;
            border-radius: 13px;
            color: var(--event-primary-dark);
            background: linear-gradient(135deg, var(--event-gold-light), var(--event-gold));
            box-shadow: 0 12px 25px rgba(216, 170, 76, 0.32);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: 0.3s ease;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        @media (max-width: 991px) {
            .event-hero {
                padding-top: 25px;
            }

            .event-hero-frame,
            .event-hero-content {
                min-height: 670px;
            }

            .event-hero-content {
                padding: 55px 35px 135px;
            }

            .event-hero-frame::before {
                background:
                    linear-gradient(90deg, rgba(5, 22, 48, 0.94), rgba(9, 39, 78, 0.7)),
                    linear-gradient(0deg, rgba(4, 17, 37, 0.7), transparent);
            }

            .hero-side-date {
                right: 30px;
                bottom: 30px;
            }

            .countdown-wrapper {
                margin-top: -55px;
            }

            .countdown-intro {
                margin-bottom: 18px;
            }

            .content-panel,
            .registration-panel,
            .register-summary {
                padding: 32px;
            }

            .schedule-card {
                grid-template-columns: 120px 1fr auto;
            }
        }

        @media (max-width: 767px) {
            .event-hero-frame {
                border-radius: 20px;
            }

            .event-hero-frame,
            .event-hero-content {
                min-height: 720px;
            }

            .event-hero-content {
                align-items: flex-start;
                padding: 50px 23px 150px;
            }

            .event-hero-title {
                margin-top: 20px;
            }

            .event-hero-description {
                font-size: 0.97rem;
            }

            .hero-meta {
                display: grid;
                grid-template-columns: 1fr;
                gap: 9px;
            }

            .hero-meta-item {
                width: fit-content;
            }

            .hero-side-date {
                left: 23px;
                right: auto;
                bottom: 25px;
                width: 135px;
            }

            .hero-side-date .day {
                font-size: 3rem;
            }

            .countdown-wrapper {
                margin-top: -35px;
            }

            .countdown-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-space {
                padding: 75px 0;
            }

            .content-panel,
            .registration-panel,
            .register-summary {
                padding: 26px 21px;
            }

            .schedule-card {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .schedule-number {
                position: absolute;
                top: 18px;
                right: 18px;
            }

            .speaker-image {
                height: 310px;
            }

            .location-panel {
                min-height: 460px;
                padding: 27px 22px;
            }

            .share-panel {
                align-items: flex-start;
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .event-hero-title {
                font-size: 2.2rem;
            }

            .event-btn {
                width: 100%;
            }

            .hero-actions {
                display: grid !important;
                width: 100%;
            }

            .countdown-panel {
                padding: 18px;
            }

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

            .section-heading h2 {
                font-size: 1.85rem;
            }

            .gloss-card {
                padding: 24px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }