/* ========================================================
   HOPLAN ELEMENTOR ADDONS — Frontend CSS
   ======================================================== */

/* ----- Theme Builder ----- */
.hea-theme-builder-header,
.hea-theme-builder-footer {
    position: relative;
    z-index: 100;
}

/* Nav Menu */
.hea-nav-wrapper { display: flex; align-items: center; gap: 8px; }
.hea-nav-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 0; }
.hea-nav-menu > li { position: relative; }
.hea-nav-menu > li > a { display: flex; align-items: center; gap: 4px; text-decoration: none; white-space: nowrap; transition: color 0.2s, background-color 0.2s; }
.hea-nav-layout-vertical .hea-nav-menu { flex-direction: column; }
.hea-nav-dropdown { display: none; position: absolute; top: 100%; left: 0; min-width: 200px; list-style: none; margin: 0; padding: 8px 0; z-index: 9999; background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,.12); border-radius: 8px; }
.hea-nav-dropdown li a { display: block; padding: 10px 20px; text-decoration: none; transition: background 0.15s; }
.hea-nav-dropdown li a:hover { background: #f5f5f5; }
.hea-has-dropdown:hover > .hea-nav-dropdown,
.hea-has-dropdown.hea-active > .hea-nav-dropdown { display: block; animation: heaFadeIn 0.15s ease; }
.hea-dropdown-indicator { margin-left: 4px; font-size: 12px; transition: transform 0.2s; display: inline-block; }
.hea-has-dropdown.hea-active .hea-dropdown-indicator { transform: rotate(90deg); }

/* Hamburger */
.hea-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hea-hamburger-icon span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: 0.3s; }
.hea-hamburger[aria-expanded="true"] .hea-hamburger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hea-hamburger[aria-expanded="true"] .hea-hamburger-icon span:nth-child(2) { opacity: 0; }
.hea-hamburger[aria-expanded="true"] .hea-hamburger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
    .hea-nav-bp-tablet .hea-hamburger { display: block; }
    .hea-nav-bp-tablet .hea-nav-container { display: none; width: 100%; }
    .hea-nav-bp-tablet .hea-nav-container.hea-open { display: block; }
    .hea-nav-bp-tablet .hea-nav-menu { flex-direction: column; }
    .hea-nav-bp-tablet .hea-nav-dropdown { position: static; box-shadow: none; padding-left: 16px; }
}
@media (max-width: 767px) {
    .hea-nav-bp-mobile .hea-hamburger { display: block; }
    .hea-nav-bp-mobile .hea-nav-container { display: none; width: 100%; }
    .hea-nav-bp-mobile .hea-nav-container.hea-open { display: block; }
    .hea-nav-bp-mobile .hea-nav-menu { flex-direction: column; }
}

/* Site Logo */
.hea-site-logo img { display: block; transition: opacity 0.2s; }
.hea-site-logo__link { display: inline-block; }
.hea-logo-text { font-weight: 700; font-size: 1.5em; }

/* Archive Posts */
.hea-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hea-post-card { overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.hea-post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1) !important; }
.hea-post-card__image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.hea-post-card__body { padding: 20px; }
.hea-post-card__title { margin: 0 0 12px; font-size: 1.1em; line-height: 1.4; }
.hea-post-card__title a { text-decoration: none; color: inherit; }
.hea-post-card__title a:hover { text-decoration: underline; }
.hea-post-card__meta { display: flex; gap: 12px; font-size: .85em; opacity: .7; margin-bottom: 12px; }
.hea-post-card__excerpt { font-size: .9em; opacity: .8; margin-bottom: 16px; line-height: 1.6; }
.hea-post-card__read-more { display: inline-block; text-decoration: none; font-weight: 600; transition: opacity 0.2s; }
.hea-post-card__read-more:hover { opacity: .7; }
.hea-no-posts { text-align: center; padding: 40px; opacity: .5; }

/* Search Form */
.hea-search-form { display: flex; align-items: stretch; overflow: hidden; border: 1px solid #e5e7eb; border-radius: 8px; }
.hea-search-input { flex: 1; border: none; outline: none; padding: 10px 14px; font-size: .95em; background: transparent; }
.hea-search-btn { border: none; background: none; cursor: pointer; padding: 0 14px; display: flex; align-items: center; transition: opacity 0.2s; }
.hea-search-btn:hover { opacity: .7; }
.hea-search-btn-full { background: #6366f1; color: #fff; padding: 10px 20px; font-weight: 600; }

/* ----- Popups ----- */
.hea-popup-overlay { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.7); }
.hea-popup-overlay.hea-position-top-center { align-items: flex-start; padding-top: 40px; }
.hea-popup-overlay.hea-position-bottom-center { align-items: flex-end; padding-bottom: 40px; }
.hea-popup-overlay.hea-position-top-left { align-items: flex-start; justify-content: flex-start; padding: 40px; }
.hea-popup-overlay.hea-position-top-right { align-items: flex-start; justify-content: flex-end; padding: 40px; }
.hea-popup-overlay.hea-position-bottom-left { align-items: flex-end; justify-content: flex-start; padding: 40px; }
.hea-popup-overlay.hea-position-bottom-right { align-items: flex-end; justify-content: flex-end; padding: 40px; }
.hea-popup-container { position: relative; background: #fff; width: 100%; max-height: 90vh; overflow-y: auto; border-radius: 12px; box-shadow: 0 25px 80px rgba(0,0,0,.25); }
.hea-popup-close { position: absolute; top: 12px; right: 12px; z-index: 1; background: rgba(0,0,0,.1); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.hea-popup-close:hover { background: rgba(0,0,0,.2); }
.hea-popup-content { padding: 0; }

/* Popup Animations */
@keyframes heaFadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes heaSlideUp { from { transform: translateY(40px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes heaSlideDown { from { transform: translateY(-40px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes heaZoomIn { from { transform: scale(.8); opacity: 0 } to { transform: scale(1); opacity: 1 } }
@keyframes heaFlip { from { transform: perspective(600px) rotateY(-90deg); opacity: 0 } to { transform: perspective(600px) rotateY(0); opacity: 1 } }
.hea-anim-fade .hea-popup-container { animation: heaFadeIn .3s ease; }
.hea-anim-slide-up .hea-popup-container { animation: heaSlideUp .3s ease; }
.hea-anim-slide-down .hea-popup-container { animation: heaSlideDown .3s ease; }
.hea-anim-zoom .hea-popup-container { animation: heaZoomIn .3s ease; }
.hea-anim-flip .hea-popup-container { animation: heaFlip .4s ease; }

/* ----- Forms ----- */
.hea-form { display: flex; flex-direction: column; gap: 16px; }
.hea-form-fields { display: flex; flex-wrap: wrap; gap: 16px; }
.hea-form-group { display: flex; flex-direction: column; gap: 6px; flex: 0 0 100%; max-width: 100%; box-sizing: border-box; }
.hea-form-label { font-weight: 500; font-size: .9em; }
.hea-required { color: #ef4444; margin-left: 2px; }
.hea-form-field { width: 100%; padding: 10px 14px; border: 1.5px solid #e5e7eb; border-radius: 6px; font-size: .95em; transition: border-color 0.2s, box-shadow 0.2s; outline: none; background: #fff; box-sizing: border-box; }
.hea-form-field:focus { border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,.15); }
textarea.hea-form-field { resize: vertical; min-height: 120px; }
.hea-form-options { display: flex; flex-wrap: wrap; gap: 8px; }
.hea-form-option-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: .95em; }
.hea-field-error { color: #ef4444; font-size: .8em; }
.hea-form-messages { border-radius: 6px; }
.hea-form-messages.hea-success { padding: 12px 16px; background: #d1fae5; color: #065f46; border-radius: 6px; }
.hea-form-messages.hea-error { padding: 12px 16px; background: #fee2e2; color: #991b1b; border-radius: 6px; }
.hea-form-footer { display: flex; gap: 12px; align-items: center; }
.hea-form-align-center .hea-form-footer { justify-content: center; }
.hea-form-align-right .hea-form-footer { justify-content: flex-end; }
.hea-form-align-stretch .hea-form-footer .hea-form-submit { width: 100%; }
.hea-form-submit { padding: 12px 28px; background: #6366f1; color: #fff; border: none; border-radius: 6px; font-size: 1em; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.1s; }
.hea-form-submit:hover { background: #4f46e5; transform: translateY(-1px); }
.hea-form-submit:active { transform: translateY(0); }
.hea-form-submit:disabled { opacity: .6; cursor: not-allowed; }
.hea-btn-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: heaSpin 0.7s linear infinite; }
.hea-form-submit.hea-loading .hea-btn-spinner { display: block; }
.hea-form-submit.hea-loading .hea-btn-text { opacity: .7; }
@keyframes heaSpin { to { transform: rotate(360deg); } }

/* ----- Motion Effects ----- */
.hea-animated-element { opacity: 0; }
.hea-animated-element.hea-animation-done { opacity: 1; }
[data-hea-sticky] { transition: top 0.2s, bottom 0.2s; }

/* ----- Advanced Widgets ----- */

/* Flip Box */
.hea-flip-box { perspective: 1200px; cursor: default; }
.hea-flip-inner { position: relative; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(.4,.2,.2,1); transform-style: preserve-3d; }
.hea-flip-box.hea-flip-right .hea-flip-inner.hea-flipped { transform: rotateY(180deg); }
.hea-flip-box.hea-flip-left .hea-flip-inner.hea-flipped { transform: rotateY(-180deg); }
.hea-flip-box.hea-flip-up .hea-flip-inner.hea-flipped { transform: rotateX(-180deg); }
.hea-flip-box.hea-flip-down .hea-flip-inner.hea-flipped { transform: rotateX(180deg); }
.hea-flip-front,
.hea-flip-back { position: absolute; inset: 0; backface-visibility: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; gap: 12px; }
.hea-flip-front { z-index: 2; }
.hea-flip-back.hea-flip-right, .hea-flip-back { transform: rotateY(180deg); }
.hea-flip-box.hea-flip-left .hea-flip-back { transform: rotateY(-180deg); }
.hea-flip-box.hea-flip-up .hea-flip-back { transform: rotateX(-180deg); }
.hea-flip-box.hea-flip-down .hea-flip-back { transform: rotateX(180deg); }
.hea-flip-icon { font-size: 2.5em; }
.hea-flip-title { margin: 0; font-size: 1.3em; font-weight: 700; }
.hea-flip-desc { margin: 0; opacity: .85; }
.hea-flip-btn { display: inline-block; margin-top: 8px; padding: 10px 22px; background: rgba(255,255,255,.2); color: inherit; text-decoration: none; border-radius: 6px; font-weight: 600; transition: background 0.2s; }
.hea-flip-btn:hover { background: rgba(255,255,255,.35); }

/* Countdown */
.hea-countdown { display: flex; gap: 16px; flex-wrap: wrap; }
.hea-countdown-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 16px 20px; background: #f5f3ff; border-radius: 10px; min-width: 70px; }
.hea-countdown-digit { font-size: 2.5em; font-weight: 800; line-height: 1; }
.hea-countdown-label { font-size: .75em; text-transform: uppercase; letter-spacing: .05em; opacity: .7; }

/* Hotspot */
.hea-hotspot-pin { z-index: 10; }
.hea-hotspot-btn { background: #6366f1; color: #fff; border: none; border-radius: 50%; width: 30px; height: 30px; cursor: pointer; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 4px rgba(99,102,241,.3); animation: heaPulse 2s infinite; }
@keyframes heaPulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(99,102,241,.3); } 50% { box-shadow: 0 0 0 8px rgba(99,102,241,.1); } }
.hea-hotspot-tooltip { display: none; position: absolute; left: 40px; top: -8px; background: #1f2937; color: #fff; padding: 10px 14px; border-radius: 8px; min-width: 160px; font-size: .85em; z-index: 20; box-shadow: 0 8px 24px rgba(0,0,0,.2); white-space: normal; }
.hea-hotspot-pin:hover .hea-hotspot-tooltip { display: block; }
.hea-hotspot-tooltip p { margin: 4px 0 0; opacity: .8; }

/* Table */
.hea-table-wrapper { overflow-x: auto; }
.hea-table-search { width: 100%; padding: 8px 12px; margin-bottom: 12px; border: 1.5px solid #e5e7eb; border-radius: 6px; font-size: .9em; outline: none; }
.hea-table { width: 100%; border-collapse: collapse; font-size: .95em; }
.hea-table thead th { padding: 12px 16px; text-align: left; font-weight: 600; white-space: nowrap; }
.hea-table tbody td { padding: 10px 16px; border-top: 1px solid #f3f4f6; }
.hea-table-sortable thead th { cursor: pointer; user-select: none; }
.hea-table-sortable thead th::after { content: ' ↕'; opacity: .4; }
.hea-table-sortable thead th.hea-sort-asc::after { content: ' ↑'; opacity: 1; }
.hea-table-sortable thead th.hea-sort-desc::after { content: ' ↓'; opacity: 1; }

/* ----- Admin Badges ----- */
.hea-badge { display: inline-block; padding: 2px 8px; border-radius: 12px; font-size: .8em; font-weight: 600; background: #ede9fe; color: #5b21b6; margin: 2px; }
.hea-badge-include { background: #d1fae5; color: #065f46; }
.hea-badge-exclude { background: #fee2e2; color: #991b1b; }

/* ----- WooCommerce ----- */
.hea-cart-widget {}
.hea-cart-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; position: relative; }
.hea-cart-count { position: absolute; top: -8px; right: -8px; background: #ef4444; color: #fff; border-radius: 50%; width: 20px; height: 20px; font-size: .7em; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.hea-cart-total { font-weight: 600; }

/* ----- Pagination ----- */
.hea-archive-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.hea-archive-pagination .page-numbers { padding: 8px 14px; border: 1.5px solid #e5e7eb; border-radius: 6px; text-decoration: none; color: inherit; transition: 0.2s; }
.hea-archive-pagination .page-numbers:hover,
.hea-archive-pagination .page-numbers.current { background: #6366f1; border-color: #6366f1; color: #fff; }

/* ----- Scroll to Top (injected globally) ----- */
.hea-scroll-to-top { position: fixed; bottom: 30px; right: 30px; z-index: 9000; width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.15); transition: transform 0.2s, opacity 0.3s; opacity: 0; pointer-events: none; }
.hea-scroll-to-top.hea-visible { opacity: 1; pointer-events: auto; }
.hea-scroll-to-top:hover { transform: translateY(-4px); }

@media (max-width: 767px) {
    .hea-archive-grid { grid-template-columns: 1fr; }
    .hea-countdown { gap: 8px; }
    .hea-countdown-item { padding: 10px 14px; min-width: 60px; }
    .hea-countdown-digit { font-size: 1.8em; }
}

/* ========================================================
   HOPLAN PHASE 1 WIDGETS STYLES
   ======================================================== */

/* Post Grid */
.hea-post-grid { display: grid; width: 100%; box-sizing: border-box; }
.hea-post-card { position: relative; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; backdrop-filter: blur(10px); }
.hea-post-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4); }
.hea-post-card__image-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.hea-post-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hea-post-card:hover .hea-post-card__image { transform: scale(1.08); }
.hea-post-card__badge { position: absolute; top: 12px; left: 12px; background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%); color: #fff; padding: 4px 10px; font-size: 0.75rem; font-weight: 700; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.hea-post-card__content { padding: 20px; }
.hea-post-card__meta { display: flex; gap: 14px; font-size: 0.8rem; color: #94a3b8; margin-bottom: 10px; }
.hea-post-card__meta i { color: #38bdf8; margin-right: 4px; }
.hea-post-card__title { margin: 0 0 10px; font-size: 1.2rem; font-weight: 700; line-height: 1.4; }
.hea-post-card__title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.hea-post-card__title a:hover { color: #38bdf8; }
.hea-post-card__excerpt { font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.hea-post-card__btn { display: inline-block; padding: 8px 18px; background: rgba(56, 189, 248, 0.1); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); border-radius: 6px; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.2s ease; }
.hea-post-card__btn:hover { background: #38bdf8; color: #0f172a; }

/* Image Accordion */
.hea-image-accordion { display: flex; width: 100%; border-radius: 16px; overflow: hidden; gap: 4px; box-sizing: border-box; }
.hea-image-accordion.hea-accordion-horizontal { flex-direction: row; }
.hea-image-accordion.hea-accordion-vertical { flex-direction: column; }
.hea-accordion-item { flex: 1; position: relative; background-size: cover; background-position: center; transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1); display: flex; align-items: flex-end; padding: 24px; box-sizing: border-box; cursor: pointer; }
.hea-accordion-item::before { content: ''; position: absolute; inset: 0; transition: background 0.3s; }
.hea-accordion-item:hover { flex: 3; }
.hea-accordion-content { position: relative; z-index: 2; color: #fff; transform: translateY(10px); transition: transform 0.3s ease; }
.hea-accordion-item:hover .hea-accordion-content { transform: translateY(0); }
.hea-accordion-title { font-size: 1.4rem; font-weight: 800; margin: 0 0 6px; color: #fff; }
.hea-accordion-desc { font-size: 0.9rem; margin: 0 0 14px; opacity: 0.9; }
.hea-accordion-btn { display: inline-block; padding: 8px 16px; background: #0284c7; color: #fff; text-decoration: none; border-radius: 6px; font-weight: 600; font-size: 0.85rem; }

/* Advanced Tabs */
.hea-advanced-tabs { display: flex; gap: 20px; width: 100%; }
.hea-advanced-tabs.hea-tabs-horizontal { flex-direction: column; }
.hea-advanced-tabs.hea-tabs-vertical { flex-direction: row; }
.hea-tabs-nav { display: flex; gap: 8px; }
.hea-tabs-horizontal .hea-tabs-nav { flex-direction: row; }
.hea-tabs-vertical .hea-tabs-nav { flex-direction: column; min-width: 220px; }
.hea-tab-btn { padding: 12px 20px; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: all 0.2s ease; text-align: left; }
.hea-tab-btn.hea-active { box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4); }
.hea-tabs-content { flex: 1; padding: 24px; background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; backdrop-filter: blur(10px); color: #cbd5e1; }

/* Testimonials */
.hea-testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; width: 100%; }
.hea-testimonial-card { padding: 24px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); display: flex; flex-direction: column; justify-content: space-between; }
.hea-testimonial-stars { font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.hea-testimonial-quote { font-size: 0.95rem; line-height: 1.6; color: #e2e8f0; font-style: italic; margin: 0 0 20px; }
.hea-testimonial-author { display: flex; align-items: center; gap: 14px; }
.hea-author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid #38bdf8; }
.hea-author-name { font-size: 0.95rem; font-weight: 700; margin: 0; color: #fff; }
.hea-author-role { font-size: 0.8rem; color: #94a3b8; }

/* Team Members */
.hea-team-grid { display: grid; width: 100%; gap: 24px; }
.hea-team-card { background: rgba(15, 23, 42, 0.7); border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08); overflow: hidden; transition: transform 0.3s ease; }
.hea-team-card:hover { transform: translateY(-6px); border-color: rgba(56, 189, 248, 0.4); }
.hea-team-image-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.hea-team-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hea-team-card:hover .hea-team-img { transform: scale(1.05); }
.hea-team-socials { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%) translateY(20px); opacity: 0; display: flex; gap: 8px; transition: all 0.3s ease; }
.hea-team-card:hover .hea-team-socials { opacity: 1; transform: translateX(-50%) translateY(0); }
.hea-social-btn { width: 36px; height: 36px; background: rgba(15, 23, 42, 0.9); color: #38bdf8; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.2s; }
.hea-social-btn:hover { background: #38bdf8; color: #0f172a; }
.hea-team-info { padding: 18px; text-align: center; }
.hea-team-name { font-size: 1.1rem; font-weight: 700; margin: 0 0 4px; color: #fff; }
.hea-team-role { font-size: 0.85rem; color: #38bdf8; font-weight: 600; }

/* Dual Color Heading */
.hea-dual-heading { font-weight: 800; font-size: 2.2rem; line-height: 1.2; margin: 0; }
.hea-dual-first { color: #ffffff; }
.hea-dual-second { color: #38bdf8; background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Fancy Text */
.hea-fancy-wrapper { font-size: 2rem; font-weight: 800; color: #ffffff; }
.hea-fancy-animated { color: #38bdf8; border-bottom: 3px solid #38bdf8; transition: opacity 0.2s ease; display: inline-block; padding: 0 4px; }

/* Creative Buttons */
.hea-creative-btn-wrapper { display: inline-block; }
.hea-btn-creative { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.05em; transition: all 0.3s ease; position: relative; overflow: hidden; }
.hea-btn-neon-glow { background: #0284c7; color: #fff; box-shadow: 0 0 15px rgba(2, 132, 199, 0.5); }
.hea-btn-neon-glow:hover { box-shadow: 0 0 30px rgba(56, 189, 248, 0.9); transform: translateY(-2px); }

/* CTA Box */
.hea-cta-box { padding: 40px; border-radius: 16px; border: 1px solid rgba(56, 189, 248, 0.3); background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(12px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); text-align: center; position: relative; overflow: hidden; }
.hea-cta-badge { display: inline-block; padding: 6px 14px; background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.4); border-radius: 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 16px; }
.hea-cta-title { font-size: 2rem; font-weight: 800; color: #fff; margin: 0 0 12px; }
.hea-cta-desc { font-size: 1rem; color: #94a3b8; margin: 0 auto 24px; max-width: 600px; line-height: 1.6; }
.hea-cta-btn { display: inline-block; padding: 14px 32px; background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%); color: #fff; text-decoration: none; border-radius: 8px; font-weight: 700; transition: transform 0.2s; }
.hea-cta-btn:hover { transform: scale(1.05); }

/* Pricing Table */
.hea-pricing-card { background: rgba(15, 23, 42, 0.7); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 36px 28px; text-align: center; position: relative; transition: all 0.3s ease; }
.hea-pricing-card.hea-pricing-featured { border-color: #38bdf8; box-shadow: 0 0 30px rgba(56, 189, 248, 0.2); transform: scale(1.03); }
.hea-pricing-ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #38bdf8; color: #0f172a; font-size: 0.75rem; font-weight: 800; padding: 4px 16px; border-radius: 12px; letter-spacing: 0.08em; }
.hea-pricing-title { font-size: 1.2rem; font-weight: 700; color: #fff; margin: 0 0 16px; }
.hea-pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 24px; }
.hea-pricing-currency { font-size: 1.5rem; font-weight: 700; color: #38bdf8; }
.hea-pricing-price { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.hea-pricing-period { font-size: 0.85rem; color: #94a3b8; }
.hea-pricing-features { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
.hea-pricing-features li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: #cbd5e1; }
.hea-feat-disabled { opacity: 0.4; }
.hea-feat-icon { font-weight: 700; color: #38bdf8; }
.hea-pricing-btn { display: block; width: 100%; padding: 12px 0; background: rgba(56, 189, 248, 0.1); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); border-radius: 8px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.hea-pricing-btn:hover { background: #38bdf8; color: #0f172a; }

/* Counter */
.hea-counter-box { text-align: center; padding: 20px; }
.hea-counter-number-wrap { font-size: 3rem; font-weight: 900; color: #38bdf8; line-height: 1; margin-bottom: 6px; }
.hea-counter-title { font-size: 0.95rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* Feature List */
.hea-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.hea-feature-item { display: flex; gap: 16px; align-items: flex-start; }
.hea-feature-icon-box { width: 44px; height: 44px; background: rgba(56, 189, 248, 0.15); border: 1px solid rgba(56, 189, 248, 0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #38bdf8; font-size: 1.2rem; flex-shrink: 0; }
.hea-feature-title { margin: 0 0 4px; font-size: 1.05rem; font-weight: 700; color: #fff; }
.hea-feature-desc { margin: 0; font-size: 0.88rem; color: #94a3b8; line-height: 1.5; }

/* Image Comparison */
.hea-img-comp-container { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: 12px; }
.hea-img-comp-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hea-img-comp-img img { width: 100%; height: 100%; object-fit: cover; }
.hea-img-comp-after { clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%); }
.hea-comp-slider { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 10; margin: 0; }
.hea-comp-label { position: absolute; bottom: 12px; padding: 4px 10px; background: rgba(0,0,0,0.7); color: #fff; font-size: 0.75rem; font-weight: 700; border-radius: 4px; z-index: 5; }
.hea-label-before { left: 12px; }
.hea-label-after { right: 12px; }

/* Logo Ticker */
.hea-logo-ticker { overflow: hidden; width: 100%; padding: 20px 0; }
.hea-logo-track { display: flex; gap: 40px; align-items: center; justify-content: space-around; flex-wrap: wrap; }
.hea-logo-item img { max-height: 48px; width: auto; filter: grayscale(100%) opacity(0.6); transition: filter 0.3s ease; }
.hea-logo-item img:hover { filter: grayscale(0%) opacity(1); }

/* Code Snippet */
.hea-code-block { background: #090d16; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; font-family: monospace; }
.hea-code-header { display: flex; justify-content: space-between; align-items: center; padding: 8px 16px; background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem; color: #94a3b8; }
.hea-code-copy-btn { background: rgba(56, 189, 248, 0.2); color: #38bdf8; border: none; padding: 4px 12px; border-radius: 4px; cursor: pointer; font-size: 0.75rem; font-weight: 600; }
.hea-code-pre { margin: 0; padding: 16px; color: #38bdf8; font-size: 0.9rem; overflow-x: auto; }

/* Timeline */
.hea-timeline { position: relative; padding: 20px 0; width: 100%; }
.hea-timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: #38bdf8; transform: translateX(-50%); }
.hea-timeline-item { position: relative; width: 50%; padding: 10px 30px; box-sizing: border-box; }
.hea-timeline-left { left: 0; text-align: right; }
.hea-timeline-right { left: 50%; text-align: left; }
.hea-timeline-node { position: absolute; top: 20px; width: 16px; height: 16px; background: #38bdf8; border-radius: 50%; box-shadow: 0 0 10px #38bdf8; }
.hea-timeline-left .hea-timeline-node { right: -8px; }
.hea-timeline-right .hea-timeline-node { left: -8px; }
.hea-timeline-content { background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(255, 255, 255, 0.1); padding: 20px; border-radius: 12px; }
.hea-timeline-date { font-size: 0.8rem; color: #38bdf8; font-weight: 800; letter-spacing: 0.05em; }
.hea-timeline-title { margin: 4px 0 8px; font-size: 1.1rem; color: #fff; font-weight: 700; }
.hea-timeline-desc { margin: 0; font-size: 0.9rem; color: #94a3b8; }

/* Progress Bar */
.hea-progress-box { width: 100%; }
.hea-progress-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 700; font-size: 0.95rem; color: #fff; }
.hea-progress-pct { color: #38bdf8; }
.hea-progress-track { width: 100%; height: 12px; background: rgba(255, 255, 255, 0.08); border-radius: 6px; overflow: hidden; }
.hea-progress-fill { height: 100%; background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%); border-radius: 6px; transition: width 1s ease; }

/* Table of Contents */
.hea-toc-box { background: rgba(15, 23, 42, 0.7); border: 1px solid rgba(255, 255, 255, 0.1); padding: 20px; border-radius: 12px; }
.hea-toc-title { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 0 12px; }
.hea-toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.hea-toc-list a { color: #38bdf8; text-decoration: none; font-size: 0.9rem; transition: opacity 0.2s; }
.hea-toc-list a:hover { text-decoration: underline; opacity: 0.8; }

/* Protected Content */
.hea-protected-box { background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(239, 68, 68, 0.3); padding: 30px; border-radius: 14px; text-align: center; }
.hea-lock-icon { font-size: 2.5rem; margin-bottom: 12px; }
.hea-lock-msg { color: #cbd5e1; margin-bottom: 16px; font-size: 0.95rem; }
.hea-lock-input-group { display: flex; gap: 8px; justify-content: center; max-width: 400px; margin: 0 auto; }
.hea-lock-pass-input { padding: 10px 14px; border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.4); color: #fff; border-radius: 6px; flex: 1; outline: none; }
.hea-lock-btn { padding: 10px 20px; background: #ef4444; color: #fff; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; }

/* Offcanvas */
.hea-offcanvas-wrapper {}
.hea-offcanvas-btn { padding: 12px 24px; background: #0284c7; color: #fff; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; }
.hea-offcanvas-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 99999; display: flex; justify-content: flex-end; }
.hea-offcanvas-panel { width: 340px; height: 100%; background: #0f172a; border-left: 1px solid rgba(255,255,255,0.1); padding: 24px; box-sizing: border-box; color: #fff; animation: heaSlideLeft 0.3s ease; }
@keyframes heaSlideLeft { from { transform: translateX(100%); } to { transform: translateX(0); } }
.hea-offcanvas-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
.hea-offcanvas-header h4 { margin: 0; font-size: 1.1rem; }
.hea-offcanvas-close { background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; }

/* Interactive Card */
.hea-interactive-card { position: relative; height: 320px; border-radius: 16px; overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 24px; box-sizing: border-box; transition: transform 0.3s ease; }
.hea-interactive-card:hover { transform: translateY(-6px); }
.hea-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.2) 100%); }
.hea-card-content { position: relative; z-index: 2; color: #fff; }
.hea-card-tag { display: inline-block; padding: 4px 10px; background: #38bdf8; color: #0f172a; font-size: 0.75rem; font-weight: 800; border-radius: 4px; margin-bottom: 8px; }
.hea-card-title { margin: 0 0 6px; font-size: 1.3rem; font-weight: 800; }
.hea-card-desc { margin: 0 0 12px; font-size: 0.88rem; color: #cbd5e1; }
.hea-card-link { color: #38bdf8; text-decoration: none; font-weight: 700; font-size: 0.85rem; }

/* Breadcrumbs */
.hea-breadcrumbs-nav { display: flex; gap: 8px; align-items: center; font-size: 0.9rem; color: #94a3b8; }
.hea-breadcrumbs-nav a { color: #38bdf8; text-decoration: none; }
.hea-crumb-current { color: #fff; font-weight: 600; }

/* Filterable Gallery */
.hea-filterable-gallery { width: 100%; }
.hea-fgallery-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; justify-content: center; }
.hea-fgallery-btn { padding: 8px 18px; background: rgba(15, 23, 42, 0.7); color: #94a3b8; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.hea-fgallery-btn.hea-active, .hea-fgallery-btn:hover { background: #38bdf8; color: #0f172a; border-color: #38bdf8; }
.hea-fgallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.hea-fgallery-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.hea-fgallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hea-fgallery-item:hover img { transform: scale(1.08); }
.hea-fgallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, transparent 70%); display: flex; align-items: flex-end; padding: 16px; color: #fff; opacity: 0; transition: opacity 0.3s; }
.hea-fgallery-item:hover .hea-fgallery-overlay { opacity: 1; }
.hea-fgallery-overlay h4 { margin: 0; font-size: 1rem; font-weight: 700; }

/* Form Styler Placeholder & Notice */
.hea-form-styler-placeholder, .hea-wc-notice { padding: 20px; background: rgba(56, 189, 248, 0.1); border: 1px dashed rgba(56, 189, 248, 0.4); color: #38bdf8; border-radius: 8px; text-align: center; font-size: 0.9rem; }

/* Google Map */
.hea-map-container { width: 100%; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.hea-map-iframe { width: 100%; border: none; filter: invert(90%) hue-rotate(180deg); }

/* Audio Player */
.hea-audio-card { display: flex; gap: 20px; align-items: center; background: rgba(15, 23, 42, 0.85); border: 1px solid rgba(56, 189, 248, 0.3); padding: 20px; border-radius: 14px; backdrop-filter: blur(10px); }
.hea-audio-cover { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; border: 1px solid #38bdf8; }
.hea-audio-details { flex: 1; }
.hea-audio-title { margin: 0 0 4px; font-size: 1.1rem; color: #fff; font-weight: 700; }
.hea-audio-artist { font-size: 0.85rem; color: #38bdf8; display: block; margin-bottom: 10px; }
.hea-audio-element { width: 100%; height: 36px; outline: none; }

/* FAQ Accordion */
.hea-faq-box { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.hea-faq-item { background: rgba(15, 23, 42, 0.7); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; overflow: hidden; }
.hea-faq-question { padding: 16px 20px; font-weight: 700; color: #fff; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.2s; }
.hea-faq-question:hover { background: rgba(56, 189, 248, 0.1); }
.hea-faq-toggle-icon { font-size: 1.2rem; color: #38bdf8; font-weight: 800; }
.hea-faq-answer { padding: 0 20px 16px; color: #cbd5e1; font-size: 0.92rem; line-height: 1.6; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.hea-faq-answer p { margin: 12px 0 0; }

/* Business Hours */
.hea-hours-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.hea-hours-list li { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 0.92rem; color: #cbd5e1; }
.hea-hours-dots { flex: 1; border-bottom: 1px dashed rgba(255,255,255,0.15); }
.hea-hours-highlight { color: #38bdf8 !important; font-weight: 700; }

/* Creative Divider */
.hea-divider-wrap { display: flex; align-items: center; gap: 16px; width: 100%; margin: 20px 0; }
.hea-divider-line { flex: 1; height: 1px; background: #38bdf8; }
.hea-divider-badge { padding: 4px 14px; background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.4); border-radius: 12px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; }

/* Info Box */
.hea-info-card { padding: 24px; background: rgba(15, 23, 42, 0.7); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; transition: transform 0.3s; }
.hea-info-card:hover { transform: translateY(-4px); border-color: rgba(56, 189, 248, 0.4); }
.hea-info-icon { font-size: 2rem; color: #38bdf8; margin-bottom: 12px; }
.hea-info-title { margin: 0 0 8px; font-size: 1.15rem; font-weight: 700; color: #fff; }
.hea-info-desc { margin: 0; font-size: 0.9rem; color: #94a3b8; line-height: 1.6; }

/* Process Steps */
.hea-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.hea-step-card { padding: 24px; background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(56, 189, 248, 0.2); border-radius: 14px; position: relative; }
.hea-step-num { font-size: 2.2rem; font-weight: 900; color: #38bdf8; opacity: 0.4; line-height: 1; display: block; margin-bottom: 8px; }
.hea-step-title { margin: 0 0 6px; font-size: 1.05rem; font-weight: 700; color: #fff; }
.hea-step-desc { margin: 0; font-size: 0.88rem; color: #cbd5e1; line-height: 1.5; }

/* Profile Card */
.hea-profile-card { padding: 24px; background: rgba(15, 23, 42, 0.85); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; text-align: center; }
.hea-profile-avatar { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid #38bdf8; margin-bottom: 12px; }
.hea-profile-pseudo { margin: 0 0 4px; font-size: 1.25rem; font-weight: 800; color: #fff; }
.hea-profile-team { font-size: 0.85rem; color: #38bdf8; display: block; margin-bottom: 16px; }
.hea-profile-stats { display: flex; gap: 8px; justify-content: center; }
.hea-stat-badge { padding: 4px 12px; background: rgba(255,255,255,0.06); border-radius: 12px; font-size: 0.78rem; font-weight: 700; color: #cbd5e1; }

/* Notification Bar */
.hea-notif-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 24px; background: linear-gradient(90deg, #0284c7 0%, #06b6d4 100%); color: #fff; border-radius: 8px; font-weight: 600; font-size: 0.9rem; }
.hea-notif-btn { padding: 6px 14px; background: #0f172a; color: #38bdf8; text-decoration: none; border-radius: 6px; font-weight: 700; font-size: 0.8rem; }
.hea-notif-close { background: none; border: none; color: #fff; font-size: 1.1rem; cursor: pointer; }

/* Badges */
.hea-cyber-badge { display: inline-block; padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.05em; }
.hea-badge-live { background: #ef4444; color: #fff; animation: heaPulse 1.5s infinite; }
.hea-badge-cyan { background: rgba(56,189,248,0.2); color: #38bdf8; border: 1px solid #38bdf8; }
.hea-badge-gold { background: #f59e0b; color: #0f172a; }

/* Social Share */
.hea-social-share-box { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hea-share-title { font-weight: 700; color: #fff; font-size: 0.9rem; }
.hea-share-buttons { display: flex; gap: 8px; }
.hea-share-btn { padding: 8px 16px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 0.8rem; color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.hea-tw { background: #1da1f2; }
.hea-fb { background: #1877f2; }
.hea-wa { background: #25d366; }

/* Event Schedule */
.hea-schedule-box { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.hea-match-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: rgba(15, 23, 42, 0.75); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; }
.hea-match-time { font-weight: 800; color: #38bdf8; font-size: 0.9rem; }
.hea-match-teams { display: flex; align-items: center; gap: 12px; font-weight: 700; color: #fff; }
.hea-vs-badge { padding: 2px 8px; background: rgba(239,68,68,0.2); color: #ef4444; border-radius: 4px; font-size: 0.75rem; font-weight: 900; }
.hea-match-stage { font-size: 0.82rem; color: #94a3b8; }

/* Price List */
.hea-pricelist-box { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.hea-pricelist-item { display: flex; flex-direction: column; gap: 4px; }
.hea-pricelist-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.hea-pricelist-title { font-weight: 700; color: #fff; font-size: 0.98rem; }
.hea-pricelist-dots { flex: 1; border-bottom: 1px dashed rgba(255,255,255,0.15); }
.hea-pricelist-price { font-weight: 800; color: #38bdf8; font-size: 1.05rem; }
.hea-pricelist-desc { font-size: 0.85rem; color: #94a3b8; }

/* Marquee Text */
.hea-marquee-wrap { overflow: hidden; width: 100%; white-space: nowrap; background: rgba(15, 23, 42, 0.9); border-y: 1px solid #38bdf8; padding: 12px 0; }
.hea-marquee-track { display: inline-flex; gap: 40px; animation: heaMarquee linear infinite; font-weight: 900; color: #38bdf8; font-size: 1.1rem; letter-spacing: 0.05em; }
@keyframes heaMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Coupon Code */
.hea-coupon-box { padding: 20px; background: rgba(15, 23, 42, 0.8); border: 2px dashed #38bdf8; border-radius: 12px; text-align: center; }
.hea-coupon-title { font-size: 0.95rem; color: #cbd5e1; display: block; margin-bottom: 12px; }
.hea-coupon-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(56, 189, 248, 0.15); padding: 8px 16px; border-radius: 8px; border: 1px solid #38bdf8; }
.hea-coupon-code { font-weight: 900; font-size: 1.2rem; color: #fff; letter-spacing: 0.1em; font-family: monospace; }
.hea-coupon-copy-btn { padding: 6px 14px; background: #38bdf8; color: #0f172a; border: none; border-radius: 6px; font-weight: 800; font-size: 0.8rem; cursor: pointer; }

/* Unfold */
.hea-unfold-box { width: 100%; position: relative; }
.hea-unfold-gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to top, rgba(15,23,42,1) 0%, transparent 100%); pointer-events: none; }
.hea-unfold-btn { margin-top: 12px; padding: 8px 18px; background: rgba(56,189,248,0.15); color: #38bdf8; border: 1px solid #38bdf8; border-radius: 6px; font-weight: 700; cursor: pointer; }

/* Animated Gradient Heading */
.hea-animated-grad-title { font-size: 2.5rem; font-weight: 900; background: linear-gradient(-45deg, #0284c7, #38bdf8, #818cf8, #c084fc); background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: heaGradientAnim 5s ease infinite; margin: 0; }
@keyframes heaGradientAnim { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* Discord Card */
.hea-discord-card { display: flex; align-items: center; gap: 16px; padding: 18px 24px; background: #5865f2; color: #fff; border-radius: 14px; box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3); }
.hea-discord-icon { font-size: 2.2rem; }
.hea-discord-info { flex: 1; }
.hea-discord-name { margin: 0 0 2px; font-size: 1.05rem; font-weight: 800; }
.hea-discord-online { font-size: 0.8rem; opacity: 0.9; display: flex; align-items: center; gap: 6px; }
.hea-dot-online { width: 8px; height: 8px; background: #57f287; border-radius: 50%; display: inline-block; }
.hea-discord-btn { padding: 8px 18px; background: #fff; color: #5865f2; text-decoration: none; border-radius: 6px; font-weight: 800; font-size: 0.85rem; }

/* Changelog */
.hea-changelog-box { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.hea-changelog-item { background: rgba(15, 23, 42, 0.75); border: 1px solid rgba(255,255,255,0.08); padding: 18px; border-radius: 12px; }
.hea-changelog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.hea-version-badge { padding: 4px 10px; background: #38bdf8; color: #0f172a; border-radius: 6px; font-weight: 800; font-size: 0.8rem; }
.hea-version-date { font-size: 0.82rem; color: #94a3b8; }
.hea-changelog-body { color: #cbd5e1; font-size: 0.9rem; line-height: 1.6; }

/* Comparison Table */
.hea-compare-table { width: 100%; border-collapse: collapse; background: rgba(15, 23, 42, 0.8); border-radius: 14px; overflow: hidden; }
.hea-compare-table th, .hea-compare-table td { padding: 14px 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); color: #cbd5e1; font-size: 0.9rem; }
.hea-compare-table th { background: rgba(255,255,255,0.04); font-weight: 800; color: #fff; text-align: left; }
.hea-compare-table td.hea-feat-name { text-align: left; font-weight: 700; color: #fff; }
.hea-col-vip { background: rgba(56, 189, 248, 0.1); color: #38bdf8 !important; font-weight: 700; }

/* Glitch Text */
.hea-glitch-wrapper { position: relative; display: inline-block; }
.hea-glitch-text { font-size: 2.8rem; font-weight: 900; color: #fff; position: relative; text-shadow: 2px 2px #ef4444, -2px -2px #38bdf8; margin: 0; }

/* Circular Progress */
.hea-circle-progress-box { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.hea-circle-bar { transition: stroke-dashoffset 1s ease; }
.hea-circle-text-wrap { position: absolute; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hea-circle-pct { font-size: 1.4rem; font-weight: 900; color: #38bdf8; line-height: 1; }
.hea-circle-title { font-size: 0.65rem; color: #94a3b8; font-weight: 700; text-transform: uppercase; margin-top: 2px; }

/* Floating Action Button */
.hea-fab-btn { position: fixed; bottom: 30px; right: 30px; z-index: 9999; padding: 14px 26px; background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%); color: #fff; text-decoration: none; border-radius: 30px; font-weight: 800; font-size: 0.95rem; box-shadow: 0 10px 30px rgba(2, 132, 199, 0.5); transition: transform 0.2s; }
.hea-fab-btn:hover { transform: scale(1.05); }

/* Tournament Bracket */
.hea-bracket-container { display: flex; gap: 30px; width: 100%; justify-content: center; }
.hea-bracket-column { display: flex; flex-direction: column; gap: 20px; flex: 1; }
.hea-bracket-title { font-size: 1.1rem; font-weight: 800; color: #38bdf8; text-transform: uppercase; margin-bottom: 10px; text-align: center; }
.hea-bracket-match { background: rgba(15,23,42,0.85); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.hea-team-slot { padding: 10px 16px; font-weight: 700; color: #cbd5e1; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; }
.hea-team-slot.hea-winner { color: #fff; background: rgba(56, 189, 248, 0.15); font-weight: 800; }
.hea-team-slot.hea-champion { color: #f59e0b; background: rgba(245, 158, 11, 0.15); font-weight: 900; font-size: 1rem; }

/* Leaderboard */
.hea-lb-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; width: 100%; }
.hea-lb-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; background: rgba(15,23,42,0.8); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; font-weight: 700; color: #fff; }
.hea-lb-rank { color: #38bdf8; font-weight: 900; font-size: 1.05rem; }
.hea-lb-points { color: #38bdf8; font-weight: 800; }

/* Live Stream Status */
.hea-stream-status-card { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; border-radius: 30px; font-weight: 800; font-size: 0.9rem; }
.hea-status-live { background: rgba(239, 68, 68, 0.2); color: #ef4444; border: 1px solid #ef4444; }
.hea-status-offline { background: rgba(255, 255, 255, 0.08); color: #94a3b8; border: 1px solid rgba(255,255,255,0.1); }
.hea-status-dot { width: 10px; height: 10px; border-radius: 50%; background: currentColor; }

/* Hero Banner Esports */
.hea-hero-box { padding: 60px 40px; background: rgba(15,23,42,0.85); border: 1px solid rgba(56,189,248,0.3); border-radius: 20px; backdrop-filter: blur(14px); text-align: center; }
.hea-hero-sub { color: #38bdf8; font-weight: 800; font-size: 0.9rem; letter-spacing: 0.1em; display: block; margin-bottom: 12px; }
.hea-hero-title { font-size: 3rem; font-weight: 900; color: #fff; margin: 0 0 24px; line-height: 1.1; }
.hea-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hea-btn-primary { padding: 14px 32px; background: #0284c7; color: #fff; text-decoration: none; border-radius: 8px; font-weight: 800; }
.hea-btn-secondary { padding: 14px 32px; background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; border-radius: 8px; font-weight: 800; border: 1px solid rgba(255,255,255,0.2); }

/* Video Popup */
.hea-vid-popup-wrap { display: flex; align-items: center; gap: 14px; }
.hea-vid-play-btn { width: 50px; height: 50px; border-radius: 50%; background: #38bdf8; color: #0f172a; border: none; font-size: 1.2rem; cursor: pointer; font-weight: 900; box-shadow: 0 0 20px rgba(56,189,248,0.6); }
.hea-vid-text { font-weight: 700; color: #fff; }
.hea-vid-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.hea-vid-modal-content { position: relative; width: 100%; max-width: 800px; }
.hea-vid-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Contact Card */
.hea-contact-card-box { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: rgba(15,23,42,0.8); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.hea-contact-item { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 600; font-size: 0.95rem; }

/* Dual Button */
.hea-dual-btn-wrap { display: flex; gap: 12px; flex-wrap: wrap; }
.hea-dbtn { padding: 12px 26px; border-radius: 8px; text-decoration: none; font-weight: 800; font-size: 0.9rem; }
.hea-dbtn-1 { background: #0284c7; color: #fff; }
.hea-dbtn-2 { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }

/* Download Card */
.hea-dl-card { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: rgba(15,23,42,0.85); border: 1px solid rgba(56,189,248,0.3); border-radius: 12px; text-decoration: none; color: #fff; transition: transform 0.2s; }
.hea-dl-card:hover { transform: translateY(-2px); border-color: #38bdf8; }
.hea-dl-icon { font-size: 1.8rem; }
.hea-dl-info { flex: 1; }
.hea-dl-title { font-weight: 800; font-size: 0.95rem; display: block; }
.hea-dl-size { font-size: 0.8rem; color: #94a3b8; }
.hea-dl-btn-icon { width: 36px; height: 36px; background: #38bdf8; color: #0f172a; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; }









