.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-2509 .elementor-element.elementor-element-37f3fb7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--overflow:hidden;}.elementor-widget-heading .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-heading .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2509 .elementor-element.elementor-element-3f12084 .elementor-heading-title{font-family:"pelak", Sans-serif;font-size:2px;font-weight:600;color:#070707;}.elementor-widget-image .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-image .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-2509 .elementor-element.elementor-element-a84ed57{--display:flex;}@media(min-width:768px){.elementor-2509 .elementor-element.elementor-element-37f3fb7{--content-width:480px;}}/* Start custom CSS for html, class: .elementor-element-9dc035c */:root {
            --bg-color: #000000;
            --surface-color: #1A1A1A;
            --text-primary: #FFFFFF;
            --text-secondary: #AAAAAA;
            --text-inverse: #000000;
            --accent-color: #FFFFFF; /* Using white as the main accent */
            --highlight: #FF4444; /* Subtle red for online status/urgency */
            --glass-border: rgba(255, 255, 255, 0.15);
            --animation-curve: cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        /* Reset & Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            outline: none;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: #000;
            color: var(--text-primary);
                font-family: "pelak", Sans-serif;
            display: flex;
            justify-content: center;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .app-container {
            width: 100%;
            max-width: 480px;
            padding: 32px 15px;
            display: flex;
            flex-direction: column;
            position: relative;
            min-height: 100vh;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            opacity: 0;
            animation: fadeInUp 0.8s var(--animation-curve) forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }

        /* Header */
        header {
            text-align: center;
            margin-bottom: 32px;
            position: relative;
        }

        h1 {
            font-size: 26px;
            font-weight: 900;
            line-height: 1.5;
            letter-spacing: -0.5px;
            background: linear-gradient(180deg, #FFFFFF 0%, #BBBBBB 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
        }

        .separator {
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            margin: 0 auto;
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        /* Event Info */
        .info-section {
            text-align: center;
            margin-bottom: 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 24px;
            backdrop-filter: blur(10px);
        }

        .info-text {
            font-size: 12px;
            line-height: 1.8;
            color: #DDDDDD;
            margin-bottom: 16px;
            font-weight: 400;
            font-family: "pelak", Sans-serif !important;
        }

        .info-text strong {
            color: #FFF;
            font-weight: 700;
            font-size: 14px;
        }

        .highlight-time {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-inverse);
            background-color: var(--accent-color);
            padding: 8px 20px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
        }

        /* Countdown */
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 48px;
            direction: ltr; /* Logic is LTR, display handles RTL via flex */
        }

        .countdown-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 80px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            position: relative;
        }
        
        /* Add a subtle top highlight to countdown boxes */
        .countdown-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20%;
            right: 20%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
        }

        .countdown-number {
            font-size: 28px;
            font-weight: 700;
            color: #FFF;
            line-height: 1.2;
            font-variant-numeric: tabular-nums;
        }

        .countdown-label {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* Navigation Buttons */
        .nav-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 48px;
        }

        .btn {
            width: 100%;
            padding: 18px;
            border-radius: 20px;
            border: none;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
            overflow: hidden;
            
            /* High Contrast White Style */
            background-color: #FFFFFF;
            color: #000000;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
        }

        .btn:active {
            transform: scale(0.98);
            box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
        }
        
        /* Subtle shimmer effect */
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
            transition: 0.5s;
        }
        
        .btn:hover::after {
            left: 100%;
        }

        /* Support Section */
        .support-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: auto;
        }
        
        .support-card {
            background: rgba(30, 30, 30, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 20px 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            transition: background 0.3s;
        }

        .support-card:active {
            background: rgba(255, 255, 255, 0.1);
        }

        .avatar-container {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #333, #111);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            border: 2px solid rgba(255,255,255,0.1);
            position: relative;
        }

        /* SVG Avatar Style */
        .avatar-svg {
            width: 32px;
            height: 32px;
            fill: #FFF;
        }

        .agent-name {
            font-size: 14px;
            font-weight: 700;
            color: #FFF;
            margin-bottom: 4px;
            text-align: center;
        }

        .agent-role {
            font-size: 11px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            text-align: center;
        }

        .status-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: #FFF;
            background: rgba(255, 255, 255, 0.05);
            padding: 4px 10px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .blinking-dot {
            width: 6px;
            height: 6px;
            background-color: var(--highlight);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--highlight);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* Footer */
        footer {
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .footer-text {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: 0.5px;
            font-family: "pelak", Sans-serif !important;
        }
        
        
        .info-text { 
            font-family: "pelak", Sans-serif !important;
        }
        .info-section.animate-in.delay-2 {
    font-family: "pelak", Sans-serif !important;
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'pelak';
	font-style: normal;
	font-weight: 100;
	font-display: auto;
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Thin.eot');
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Thin.eot?#iefix') format('embedded-opentype'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Thin.woff2') format('woff2'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Thin.woff') format('woff'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Thin.ttf') format('truetype');
}
@font-face {
	font-family: 'pelak';
	font-style: normal;
	font-weight: 200;
	font-display: auto;
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-light.eot');
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-light.eot?#iefix') format('embedded-opentype'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-light.woff2') format('woff2'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-light.woff') format('woff'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-light.ttf') format('truetype');
}
@font-face {
	font-family: 'pelak';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Regular.eot');
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Regular.eot?#iefix') format('embedded-opentype'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Regular.woff2') format('woff2'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Regular.woff') format('woff'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'pelak';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Medium.eot');
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Medium.eot?#iefix') format('embedded-opentype'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Medium.woff2') format('woff2'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Medium.woff') format('woff'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Medium.ttf') format('truetype');
}
@font-face {
	font-family: 'pelak';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-SemiBold.eot');
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-SemiBold.woff2') format('woff2'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-SemiBold.woff') format('woff'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-SemiBold.ttf') format('truetype');
}
@font-face {
	font-family: 'pelak';
	font-style: normal;
	font-weight: 600;
	font-display: auto;
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Bold.eot');
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Bold.eot?#iefix') format('embedded-opentype'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Bold.woff2') format('woff2'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Bold.woff') format('woff'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Bold.ttf') format('truetype');
}
@font-face {
	font-family: 'pelak';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-ExtraBold.eot');
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-ExtraBold.eot?#iefix') format('embedded-opentype'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-ExtraBold.woff2') format('woff2'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-ExtraBold.woff') format('woff'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-ExtraBold.ttf') format('truetype');
}
@font-face {
	font-family: 'pelak';
	font-style: normal;
	font-weight: 800;
	font-display: auto;
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Black.eot');
	src: url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Black.eot?#iefix') format('embedded-opentype'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Black.woff2') format('woff2'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Black.woff') format('woff'),
		url('http://horadmafi.com/wp-content/uploads/2025/04/PelakFA-Black.ttf') format('truetype');
}
/* End Custom Fonts CSS */