/* Nike Pristine Style - Auto-themed */
:root {
    --jign-primary: #0a230f;
    --jign-accent: #15b77f;
    --jign-gold: #0bb485;
    --jign-gold-light: #43cda3;
    --jign-gold-dark: #0ba163;
    --jign-burgundy: #931f32;
    --jign-burgundy-light: #a53c50;
    --jign-bg: #FFFFFF;
    --jign-bg-dark: #1a0f0a;
    --jign-text: #0e3117;
    --jign-text-light: #3d4e6f;
    --jign-border: #bee5f4;
    --jign-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --jign-shadow-hover: rgba(26, 15, 10, 0.2);
    --jign-shadow-gold: rgba(14,162,236,0.25);
    --jign-success: #437754;
    --jign-danger: #cc4b4a;
    --jign-overlay: rgba(26, 15, 10, 0.7);
}

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

body {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    line-height: 1.8;
    color: var(--jign-text);
    background: var(--jign-bg);
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(20,165,233,0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 60%, rgba(206,163,90,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #faf8f5 0%, #f5f1eb 100%);
    background-attachment: fixed;
    font-size: 17px;
    position: relative;
    scroll-behavior: smooth;
}

body.loaded {
    opacity: 1;
}

body:not(.loaded) {
    opacity: 0;
    transition: opacity 0.3s;
}

/* Viewport height variable for mobile */
:root {
    --vh: 1vh;
}

.jign-hero {
    min-height: calc(var(--vh, 1vh) * 100);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(18,168,234,0.008) 3px, rgba(10,162,231,0.008) 6px);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.jign-container {
    max-width:100%;
    margin: 0 auto;
    padding: 0 29px;
}

/* Price Ticker */
.jign-ticker {
    background: 
        linear-gradient(135deg, #1a0f0a 0%, #251b18 50%, #1a0f0a 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(10,172,239,0.03) 2px, rgba(10,165,232,0.03) 4px);
    color: #ffffff;
    padding: 15px 0;
    border-bottom: 4px solid rgba(10,159,240,0.25);
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 5px 25px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.jign-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--jign-gold), var(--jign-gold-light), var(--jign-gold), transparent);
    animation: jign-shimmer 4s infinite;
}

@keyframes jign-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.jign-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 0 28px;
}

.jign-ticker-item {
    display: flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
    padding: 12px 19px;
    border-radius: 13px;
    transition: all 0.35s;
    position: relative;
}

.jign-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11,172,230,0.12);
    border-radius: 11px;
    opacity: 0;
    transition: opacity 0.35s;
}

.jign-ticker-item:hover::before {
    opacity: 1;
}

.jign-ticker-item:hover {
    transform: translateY(-3px);
}

.jign-ticker-metal {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.jign-ticker-price {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--jign-gold), var(--jign-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(17,160,235,0.6);
    position: relative;
    font-family: 'Inter', sans-serif;
}

.jign-ticker-change {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
}

.jign-ticker-change svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.jign-ticker-change--up {
    color: var(--jign-success);
}

.jign-ticker-change--down {
    color: var(--jign-danger);
}

.jign-ticker-separator {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.25);
}

.jign-ticker-update {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: 'Inter', sans-serif;
}

.jign-ticker-live {
    width: 9px;
    height: 9px;
    background: var(--jign-success);
    border-radius: 50%;
    display: inline-block;
    animation: jign-pulse 2.5s infinite;
}

@keyframes jign-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Header */
.jign-header {
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.99) 0%, rgba(245, 241, 235, 0.97) 100%);
    border-bottom: 3px solid var(--jign-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(28px) saturate(190%);
    box-shadow: 0 5px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

.jign-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--jign-gold), var(--jign-gold-light), var(--jign-gold), transparent);
}

.jign-header-container {
    max-width:100%;
    margin: 0 auto;
    padding: 19px 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jign-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--jign-primary);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.4px;
    font-family: 'Cormorant Garamond', serif;
}

.jign-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--jign-gold) 0%, var(--jign-gold-light) 50%, var(--jign-gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jign-primary);
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 5px 18px var(--jign-shadow-gold);
    position: relative;
    overflow: hidden;
}

.jign-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: jign-rotate 3.5s infinite;
}

@keyframes jign-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.jign-logo-text {
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.jign-nav {
    display: flex;
    gap: 34px;
    align-items: center;
}

.jign-nav-link {
    color: var(--jign-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 10px 15px;
    border-radius: 12px;
    font-family: 'Cormorant Garamond', serif;
}

.jign-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18,163,231,0.12), rgba(196,161,103,0.08));
    border-radius: 9px;
    opacity: 0;
    transition: opacity 0.45s;
    z-index: -1;
}

.jign-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 85%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--jign-gold), transparent);
    border-radius: 3px;
    transition: transform 0.45s;
}

.jign-nav-link:hover {
    color: var(--jign-gold);
    transform: translateY(-2px);
}

.jign-nav-link:hover::before {
    opacity: 1;
}

.jign-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.jign-nav-link--active {
    color: var(--jign-gold);
    background: linear-gradient(135deg, rgba(10,167,232,0.18), rgba(194,164,104,0.12));
    box-shadow: 0 3px 12px rgba(10,170,229,0.25);
}

.jign-nav-link--active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, transparent, var(--jign-gold), var(--jign-gold-light), var(--jign-gold), transparent);
    height: 3px;
}

.jign-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 9px;
}

.jign-menu-toggle.active .jign-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.jign-menu-toggle.active .jign-menu-line:nth-child(2) {
    opacity: 0;
}

.jign-menu-toggle.active .jign-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.jign-menu-line {
    width: 26px;
    height: 3px;
    background: var(--jign-primary);
    transition: all 0.35s ease;
    border-radius: 3px;
}

.jign-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 23px 31px;
    background: var(--jign-bg);
    border-top: 2px solid var(--jign-border);
}

.jign-mobile-nav.active {
    display: flex;
}

.jign-mobile-link {
    padding: 12px 0;
    color: var(--jign-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--jign-border);
    font-family: 'Cormorant Garamond', serif;
}

.jign-mobile-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.jign-hero {
    background: linear-gradient(135deg, #1a0f0a 0%, #281518 25%, #261118 50%, #212111 75%, #1a0f0a 100%);
    color: #ffffff;
    padding: 130px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jign-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(13,164,237,0.18) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(199,162,94,0.12) 0%, transparent 50%);
    animation: jign-pulse 5s ease-in-out infinite;
}

.jign-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 120px,
            rgba(11,167,238,0.04) 120px,
            rgba(10,161,235,0.04) 240px
        ),
        radial-gradient(circle at 30% 40%, rgba(17,171,227,0.06) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(203,168,100,0.04) 0%, transparent 40%);
    animation: jign-drift 25s linear infinite, jign-hero-pattern 15s ease-in-out infinite;
}

@keyframes jign-hero-pattern {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

@keyframes jign-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(120px, 120px); }
}

.jign-hero-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
}

.jign-hero-badge {
    display: inline-block;
    padding: 11px 34px;
    background: linear-gradient(135deg, rgba(15,158,228,0.25) 0%, rgba(201,172,97,0.18) 100%);
    border: 2px solid rgba(21,161,225,0.45);
    border-radius: 53px;
    font-size: 15px;
    font-weight: 700;
    color: var(--jign-gold);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin-bottom: 39px;
    box-shadow: 0 5px 22px rgba(20,171,234,0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.jign-hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: jign-shine 3.5s infinite;
}

@keyframes jign-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.jign-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 31px 0;
    color: #ffffff;
    text-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.6),
        0 5px 25px rgba(10,162,240,0.35),
        0 0 45px rgba(10,172,229,0.15);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--jign-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: jign-title-glow 3.5s ease-in-out infinite;
}

@keyframes jign-title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}

.jign-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 44px 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Cormorant Garamond', serif;
}

.jign-hero-actions {
    display: flex;
    gap: 19px;
    justify-content: center;
    flex-wrap: wrap;
}

.jign-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 39px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.35s ease;
    border: none;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
}

.jign-btn-primary {
    background: linear-gradient(135deg, var(--jign-gold) 0%, var(--jign-gold-light) 50%, var(--jign-gold-dark) 100%);
    color: var(--jign-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 7px 30px rgba(13,159,230,0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.jign-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s;
}

.jign-btn-primary:hover::before {
    left: 100%;
}

.jign-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(10,172,227,0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.jign-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.jign-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.6s;
}

.jign-btn-secondary:hover::before {
    left: 100%;
}

.jign-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Main Content */
.jign-main {
    padding: 73px 0;
    position: relative;
}

.jign-article {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.jign-article::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, 
        transparent, 
        var(--jign-gold) 12%, 
        var(--jign-gold-light) 50%, 
        var(--jign-gold) 88%, 
        transparent
    );
    border-radius: 3px;
    opacity: 0.35;
}

@media (max-width: 768px) {
    .jign-article::before {
        display: none;
    }
}

.jign-intro {
    margin-bottom: 57px;
    padding: 34px;
    background: 
        linear-gradient(135deg, rgba(19,160,239,0.06) 0%, rgba(205,174,95,0.04) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(10,163,240,0.02) 20px, rgba(10,157,232,0.02) 21px);
    border-radius: 21px;
    border-left: 6px solid var(--jign-gold);
    border-right: 2px solid rgba(10,167,237,0.15);
    box-shadow: 
        0 5px 25px rgba(0, 0, 0, 0.06),
        0 2px 10px rgba(13,170,238,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset -1px 0 0 rgba(11,157,227,0.1);
    position: relative;
    overflow: hidden;
}

.jign-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 120px;
    background: radial-gradient(circle, rgba(10,167,236,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: jign-intro-glow 4s ease-in-out infinite;
}

.jign-intro::after {
    content: '❋';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 30px;
    color: var(--jign-gold);
    opacity: 0.2;
    animation: jign-rotate-slow 20s linear infinite;
}

@keyframes jign-intro-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.jign-lead {
    font-size: 24px;
    line-height: 1.85;
    color: var(--jign-text);
    margin-bottom: 26px;
    font-weight: 500;
    position: relative;
    padding-left: 27px;
    font-family: 'Cormorant Garamond', serif;
}

.jign-lead::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -12px;
    font-size: 70px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--jign-gold);
    opacity: 0.35;
    line-height: 1;
}

.jign-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--jign-primary) 0%, var(--jign-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 64px 0 35px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 25px;
    text-shadow: 0 1px 11px rgba(17,161,228,0.1);
}

.jign-section-heading {
    scroll-margin-top: 100px;
}

.jign-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, var(--jign-gold), var(--jign-gold-light), transparent);
    border-radius: 1px;
}

.jign-article h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--jign-primary);
    margin: 46px 0 20px 0;
}

.jign-article p {
    margin-bottom: 29px;
    line-height: 2;
    color: var(--jign-text);
    position: relative;
    padding-left: 24px;
    font-family: 'Cormorant Garamond', serif;
}

.jign-article p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    background: var(--jign-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(16,170,233,0.6);
    opacity: 0.65;
}

.jign-article p:first-of-type::before {
    display: none;
}

.jign-list,
.jign-list-ordered {
    margin: 33px 0;
    padding-left: 34px;
    position: relative;
}

.jign-list::before,
.jign-list-ordered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--jign-gold), var(--jign-gold-light), var(--jign-gold-dark));
    border-radius: 2px;
}

.jign-list li,
.jign-list-ordered li {
    margin-bottom: 15px;
    line-height: 1.85;
    color: var(--jign-text);
    padding-left: 16px;
    position: relative;
    transition: all 0.35s;
    font-family: 'Cormorant Garamond', serif;
}

.jign-list li::marker {
    color: var(--jign-gold);
    font-weight: 700;
}

.jign-list li:hover,
.jign-list-ordered li:hover {
    color: var(--jign-primary);
    transform: translateX(6px);
}

.jign-list-ordered {
    list-style: decimal;
}

.jign-image-wrapper {
    margin: 58px 0;
    border-radius: 23px;
    overflow: hidden;
    box-shadow: 
        0 18px 55px var(--jign-shadow),
        0 10px 35px rgba(0, 0, 0, 0.12),
        0 4px 15px rgba(14,158,234,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
    border: 4px solid rgba(20,161,239,0.25);
    background: linear-gradient(135deg, rgba(19,171,231,0.05), rgba(205,169,104,0.03));
}

.jign-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 15, 10, 0.9), rgba(26, 15, 10, 0.7), transparent);
    color: #ffffff;
    padding: 18px 28px 15px;
    font-size: 11px;
    font-style: italic;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
    transform: translateY(10px);
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.jign-image-wrapper:hover .jign-image-caption {
    opacity: 1;
    transform: translateY(0);
}

.jign-image-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--jign-gold), var(--jign-gold-light), var(--jign-gold-dark), var(--jign-gold));
    border-radius: 19px;
    z-index: -1;
    opacity: 0.35;
    animation: jign-border-glow 3.5s ease-in-out infinite;
}

.jign-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 15, 10, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
}

@keyframes jign-border-glow {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.65; }
}

.jign-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s;
    opacity: 0;
    filter: blur(6px);
}

.jign-article-image.loaded {
    opacity: 1;
    filter: blur(0);
}

.jign-image-wrapper:hover .jign-article-image {
    transform: scale(1.06);
}

.jign-image-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(13,165,230,0.2);
    border-top-color: var(--jign-gold);
    border-radius: 50%;
    animation: jign-spin 1s linear infinite;
    z-index: 2;
}

@keyframes jign-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Quick Facts Box */
.jign-facts-container {
    margin: 53px 0;
}

.jign-facts-box {
    background: 
        linear-gradient(135deg, var(--jign-bg) 0%, #f5f1eb 100%),
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(12,159,227,0.015) 15px, rgba(11,168,235,0.015) 16px);
    border: 4px solid var(--jign-gold);
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 
        0 14px 45px var(--jign-shadow),
        0 6px 25px var(--jign-shadow-gold),
        0 0 0 1px rgba(10,162,228,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(16,166,225,0.1);
    position: relative;
}

.jign-facts-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(15,159,234,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: jign-facts-glow 6s ease-in-out infinite;
}

@keyframes jign-facts-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.jign-facts-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(14,169,226,0.025) 25px, rgba(21,163,239,0.025) 26px);
    pointer-events: none;
}

.jign-facts-header {
    background: linear-gradient(135deg, var(--jign-gold) 0%, var(--jign-gold-light) 50%, var(--jign-gold-dark) 100%);
    padding: 32px 37px;
    display: flex;
    align-items: center;
    gap: 22px;
    position: relative;
    box-shadow: 0 4px 21px rgba(20,172,231,0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.jign-facts-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.jign-facts-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jign-primary);
    box-shadow: 
        inset 0 3px 6px rgba(0, 0, 0, 0.25),
        0 3px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.jign-facts-icon svg {
    width: 26px;
    height: 26px;
}

.jign-facts-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--jign-primary);
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
}

.jign-facts-body {
    padding: 0;
}

.jign-fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 34px;
    border-bottom: 2px solid var(--jign-border);
}

.jign-fact-row:last-child {
    border-bottom: none;
}

.jign-fact-row--highlight {
    background: linear-gradient(90deg, rgba(13,160,227,0.12) 0%, rgba(12,170,235,0.18) 50%, rgba(11,163,228,0.12) 100%);
    border-left: 5px solid var(--jign-gold);
    box-shadow: inset 5px 0 12px rgba(10,157,236,0.12);
}

.jign-fact-label {
    font-size: 16px;
    color: var(--jign-text-light);
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
}

.jign-fact-value {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--jign-primary), var(--jign-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
}

.jign-fact-row--highlight .jign-fact-value {
    background: linear-gradient(135deg, var(--jign-gold), var(--jign-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jign-fact-value--negative {
    color: var(--jign-danger);
}

.jign-facts-footer {
    padding: 30px 34px;
    background: rgba(17,167,225,0.12);
}

.jign-facts-cta {
    display: block;
    width: 100%;
    padding: 21px;
    background: linear-gradient(135deg, var(--jign-gold) 0%, var(--jign-gold-light) 50%, var(--jign-gold-dark) 100%);
    color: var(--jign-primary);
    text-align: center;
    text-decoration: none;
    border-radius: 13px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.45s;
    box-shadow: 
        0 7px 25px rgba(16,161,233,0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    position: relative;
    overflow: hidden;
    font-family: 'Cormorant Garamond', serif;
}

.jign-facts-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s;
}

.jign-facts-cta:hover::before {
    left: 100%;
}

.jign-facts-cta:hover {
    background: linear-gradient(135deg, var(--jign-gold-light) 0%, var(--jign-gold) 50%, var(--jign-gold-dark) 100%);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 35px rgba(21,158,231,0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* FAQ Accordion */
.jign-faq-section {
    margin: 68px 0;
}

.jign-faq-header {
    text-align: center;
    margin-bottom: 68px;
    position: relative;
    padding-bottom: 35px;
}

.jign-faq-header::before {
    content: '❓';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 45px;
    opacity: 0.12;
    filter: blur(2px);
}

.jign-faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--jign-gold), var(--jign-gold-light), var(--jign-gold), transparent);
    border-radius: 1px;
}

.jign-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--jign-primary);
    margin-bottom: 14px;
}

.jign-faq-subtitle {
    font-size: 15px;
    color: var(--jign-text-light);
    font-family: 'Cormorant Garamond', serif;
}

.jign-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jign-faq-item {
    background: 
        linear-gradient(135deg, var(--jign-bg) 0%, #f5f1eb 100%),
        radial-gradient(circle at top left, rgba(19,161,232,0.02) 0%, transparent 50%);
    border: 3px solid var(--jign-border);
    border-radius: 21px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 5px 18px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(10,164,229,0.05);
    position: relative;
}

.jign-faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(10,158,238,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.jign-faq-item:hover::after,
.jign-faq-item.active::after {
    opacity: 1;
}

.jign-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--jign-gold), var(--jign-gold-dark));
    transform: scaleY(0);
    transition: transform 0.45s;
}

.jign-faq-item:hover {
    border-color: rgba(10,168,230,0.55);
    box-shadow: 
        0 10px 30px var(--jign-shadow),
        0 0 0 1px rgba(10,161,227,0.12);
    transform: translateX(5px);
}

.jign-faq-item:hover::before,
.jign-faq-item.active::before {
    transform: scaleY(1);
}

.jign-faq-item.active {
    border-color: var(--jign-gold);
    box-shadow: 
        0 14px 40px var(--jign-shadow),
        0 6px 25px var(--jign-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #ffffff 0%, #f5f1eb 100%);
}

.jign-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 27px 33px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.35s ease;
}

.jign-faq-question:hover {
    background: rgba(12,165,228,0.06);
}

.jign-faq-question-text {
    font-size: 19px;
    font-weight: 600;
    color: var(--jign-primary);
    line-height: 1.5;
    font-family: 'Cormorant Garamond', serif;
}

.jign-faq-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11,159,236,0.18), rgba(197,172,89,0.12));
    border-radius: 50%;
    color: var(--jign-gold);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 10px rgba(17,162,233,0.25);
    border: 2px solid rgba(16,172,226,0.25);
}

.jign-faq-item.active .jign-faq-icon {
    transform: rotate(180deg) scale(1.15);
    background: linear-gradient(135deg, var(--jign-gold), var(--jign-gold-light));
    color: var(--jign-primary);
    box-shadow: 
        0 5px 18px var(--jign-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.jign-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.jign-faq-item.active .jign-faq-answer {
    max-height: 1200px;
}

.jign-faq-answer-content {
    padding: 0 32px 30px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--jign-text);
    font-family: 'Cormorant Garamond', serif;
}

.jign-faq-answer-content p {
    margin-bottom: 17px;
}

/* Footer */
.jign-footer {
    background: linear-gradient(135deg, #1a0f0a 0%, #332412 50%, #1a0f0a 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 90px 0 43px;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
}

.jign-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--jign-gold), transparent);
}

.jign-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 120px, rgba(21,169,239,0.025) 120px, rgba(20,162,232,0.025) 121px);
    animation: jign-drift 35s linear infinite;
}

.jign-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 56px;
    margin-bottom: 53px;
    position: relative;
    z-index: 1;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.jign-footer-grid::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--jign-gold), transparent);
}

.jign-footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 21px;
}

.jign-footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Cormorant Garamond', serif;
}

.jign-footer-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 21px;
    font-family: 'Cormorant Garamond', serif;
}

.jign-footer-links {
    list-style: none;
    padding: 0;
}

.jign-footer-links li {
    margin-bottom: 12px;
}

.jign-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.35s ease;
    position: relative;
    padding-left: 26px;
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
}

.jign-footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-12px);
    transition: all 0.35s;
    color: var(--jign-gold);
}

.jign-footer-links a:hover {
    color: var(--jign-gold);
    transform: translateX(6px);
}

.jign-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.jign-footer-bottom {
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Cormorant Garamond', serif;
    position: relative;
}

.jign-footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--jign-gold), transparent);
}

/* Additional decorative elements */
.jign-intro::after {
    content: '❋';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 30px;
    color: var(--jign-gold);
    opacity: 0.2;
    animation: jign-rotate-slow 20s linear infinite;
}

.jign-facts-box::before {
    animation: jign-facts-pattern 15s linear infinite;
}

@keyframes jign-facts-pattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(25px, 25px); }
}

/* Enhanced hover effects */
.jign-nav-link {
    position: relative;
}

.jign-nav-link::before {
    border-radius: 13px;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.jign-nav-link:hover {
    text-shadow: 0 0 10px rgba(10,157,235,0.3);
}

.jign-btn-primary {
    position: relative;
    overflow: visible;
}

.jign-btn-primary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--jign-gold), var(--jign-gold-light));
    border-radius: 11px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s;
    filter: blur(6px);
}

.jign-btn-primary:hover::after {
    opacity: 0.6;
}

/* Text selection styling */
::selection {
    background: rgba(13,166,228,0.3);
    color: var(--jign-primary);
}

::-moz-selection {
    background: rgba(12,160,236,0.3);
    color: var(--jign-primary);
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 4px solid var(--jign-gold);
    outline-offset: 2px;
    border-radius: 3px;
}

/* Print styles */
@media print {
    .jign-ticker,
    .jign-header,
    .jign-footer,
    .jign-scroll-progress {
        display: none;
    }
    
    .jign-article {
        max-width:100%;
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .jign-article h2,
    .jign-article h3 {
        border-bottom: 2px solid var(--jign-gold);
    }
    
    .jign-btn-primary {
        border: 2px solid var(--jign-primary);
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Keep light theme but ensure readability */
    body {
        background: var(--jign-bg);
        color: var(--jign-text);
    }
}

/* Performance optimizations */
.jign-article-image {
    will-change: transform, opacity;
}

.jign-btn-primary,
.jign-btn-secondary {
    will-change: transform;
}

/* Enhanced focus states for keyboard navigation */
.jign-nav-link:focus-visible,
.jign-btn:focus-visible,
.jign-faq-question:focus-visible {
    outline: 4px solid var(--jign-gold);
    outline-offset: 4px;
    border-radius: 3px;
}

/* Skip to main content link for accessibility */
.jign-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--jign-gold);
    color: var(--jign-primary);
    padding: 8px 13px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 5px 0;
    transition: top 0.3s;
}

.jign-skip-link:focus {
    top: 0;
    outline: 2px solid var(--jign-primary);
    outline-offset: 3px;
}

/* Scroll Progress */
.jign-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--jign-gold), var(--jign-gold-light), var(--jign-gold));
    z-index: 9999;
    transition: width 0.1s;
    box-shadow: 0 0 12px rgba(11,170,225,0.6);
}

.jign-scroll-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    animation: jign-progress-shine 2s infinite;
}

@keyframes jign-progress-shine {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

/* Section Divider */
.jign-section-divider {
    height: 110px;
    position: relative;
    margin: 85px 0;
    overflow: hidden;
}

.jign-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(17,157,226,0.25) 20%, 
        var(--jign-gold) 50%, 
        rgba(16,167,234,0.25) 80%, 
        transparent
    );
    transform: translateY(-50%);
}

.jign-section-divider::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--jign-gold), var(--jign-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--jign-primary);
    box-shadow: 
        0 0 35px rgba(15,160,231,0.6),
        inset 0 2px 6px rgba(255, 255, 255, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.35);
}

/* Enhanced Details and Effects */
.jign-hero::before {
    animation: jign-pulse 5s ease-in-out infinite, jign-shimmer-bg 8s ease-in-out infinite;
}

@keyframes jign-shimmer-bg {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.95; filter: brightness(1.1); }
}

.jign-feature-card::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--jign-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.jign-feature-card:hover::after {
    opacity: 1;
}

.jign-facts-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(20,157,240,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.jign-faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(19,167,229,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.jign-faq-item:hover::after,
.jign-faq-item.active::after {
    opacity: 1;
}

.jign-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.jign-btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.jign-section-divider::before {
    animation: jign-line-pulse 3s ease-in-out infinite;
}

@keyframes jign-line-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.jign-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10,171,230,0.3), transparent);
    animation: jign-header-shine 4s infinite;
}

@keyframes jign-header-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.jign-footer::before {
    animation: jign-footer-glow 6s ease-in-out infinite;
}

@keyframes jign-footer-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Text Enhancements */
.jign-article h2::before {
    content: '◆';
    position: absolute;
    left: -35px;
    top: 15px;
    font-size: 20px;
    color: var(--jign-gold);
    opacity: 0.4;
    animation: jign-diamond-twinkle 3s ease-in-out infinite;
}

@keyframes jign-diamond-twinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@media (max-width: 768px) {
    .jign-article h2::before {
        display: none;
    }
}

/* Responsive */
/* Additional visual enhancements */
.jign-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--jign-gold), transparent);
    opacity: 0.5;
}

.jign-facts-box {
    position: relative;
}

.jign-facts-box::before {
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(10,164,238,0.025) 25px, rgba(10,158,235,0.025) 26px);
    animation: jign-facts-pattern 15s linear infinite;
}

.jign-faq-item {
    position: relative;
}

.jign-faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(10,168,227,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.jign-faq-item:hover::after,
.jign-faq-item.active::after {
    opacity: 1;
}

/* Enhanced button effects */
.jign-btn-primary {
    position: relative;
    overflow: visible;
}

.jign-btn-primary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--jign-gold), var(--jign-gold-light));
    border-radius: 11px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s;
    filter: blur(6px);
}

.jign-btn-primary:hover::after {
    opacity: 0.6;
}

/* Enhanced list styling */
.jign-list li::before {
    content: '◆';
    position: absolute;
    left: -20px;
    color: var(--jign-gold);
    opacity: 0.5;
    font-size: 12px;
}

.jign-list-ordered li::marker {
    color: var(--jign-gold);
    font-weight: 700;
}

/* Enhanced section dividers */
.jign-section-divider::before {
    box-shadow: 0 0 20px rgba(13,161,236,0.3);
}

.jign-section-divider::after {
    animation: jign-divider-pulse 3s ease-in-out infinite;
}

@keyframes jign-divider-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 35px rgba(12,171,228,0.6),
            inset 0 2px 6px rgba(255, 255, 255, 0.35);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 
            0 0 45px rgba(10,158,226,0.8),
            inset 0 2px 6px rgba(255, 255, 255, 0.4);
    }
}

@media (max-width: 768px) {
    .jign-ticker-track {
        gap: 21px;
        font-size: 17px;
    }

    .jign-ticker-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .jign-ticker-separator {
        display: none;
    }

    .jign-menu-toggle {
        display: flex;
    }

    .jign-nav {
        display: none;
    }

    .jign-hero-title {
        font-size: 38px;
    }

    .jign-hero-subtitle {
        font-size: 17px;
    }

    .jign-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .jign-btn {
        width: 100%;
        justify-content: center;
    }

    .jign-article h2 {
        font-size: 30px;
    }

    .jign-faq-title {
        font-size: 30px;
    }

    .jign-faq-question {
        padding: 22px;
    }

    .jign-faq-answer-content {
        padding: 0 19px 24px;
    }

    .jign-fact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }

    .jign-fact-value {
        text-align: left;
    }
}


/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 11px;
    margin-bottom: 8px;
    border: 1px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 9px 27px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 13px 24px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 6px 19px;
        font-size: 13px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 6px !important;
        margin: 0 auto 15px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 12px 17px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 7px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


/* Max width 1400px for desktop */
.jign-wrapper, .jign-content, .jign-hero-inner, .jign-companies-container, 
.jign-article, .jign-container, .jign-footer-inner, .jign-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.jign-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.jign-td-action {
    text-align: center !important;
}
.jign-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
}


/* === OVERRIDES: Ensure proper display === */
/* Remove body opacity animation */
body { opacity: 1 !important; }
body:not(.loaded) { opacity: 1 !important; }
body::before { display: none !important; }

/* Hero: remove min-height to keep compact */
.jign-hero { min-height: auto !important; }
