/* Ferrari Cotton Style - Auto-themed */
:root {
    --dond-primary: #0a2226;
    --dond-accent: #0bb7cb;
    --dond-gold: #0ab1da;
    --dond-gold-light: #39cadb;
    --dond-gold-dark: #0a90aa;
    --dond-bg: #FAFAFA;
    --dond-bg-dark: #24201d;
    --dond-bg-gradient: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 50%, #faf8f5 100%);
    --dond-text: #1d3838;
    --dond-text-light: #0ab6cf;
    --dond-border: #d7d3d2;
    --dond-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --dond-shadow-hover: rgba(26, 10, 10, 0.15);
    --dond-shadow-gold: rgba(207,172,94,0.25);
    --dond-success: #2a855e;
    --dond-danger: #d2434b;
    --dond-overlay: rgba(26, 10, 10, 0.5);
}

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

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    line-height: 1.8;
    color: var(--dond-text);
    background: var(--dond-bg);
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(220,18,58,0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(204,173,104,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #faf8f5 0%, #f5f1eb 100%);
    background-attachment: fixed;
    font-size: 18px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(203,166,96,0.008) 3px, rgba(198,172,97,0.008) 6px),
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(216,13,52,0.005) 3px, rgba(219,18,61,0.005) 6px);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(218,24,53,0.015) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(194,163,99,0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: dond-background-pulse 8s ease-in-out infinite;
}

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

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

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

/* Price Ticker */
.dond-ticker {
    background: linear-gradient(135deg, #252220 0%, #1a0a0a 50%, #261812 100%);
    color: #faf8f5;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212,23,54,0.3);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.dond-ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    padding: 8px 17px;
    border-radius: 7px;
    transition: all 0.3s;
    position: relative;
}

.dond-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(214,19,55,0.08);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.dond-ticker-item:hover {
    transform: translateY(-1px);
}

.dond-ticker-metal {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(250, 248, 245, 0.7);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.dond-ticker-price {
    font-size: 19px;
    font-weight: 700;
    color: var(--dond-gold-light);
    text-shadow: 0 0 15px rgba(205,163,101,0.4);
    position: relative;
    font-family: 'Inter', sans-serif;
}

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

.dond-ticker-change svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

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

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

.dond-ticker-separator {
    width: 1px;
    height: 26px;
    background: rgba(250, 248, 245, 0.15);
}

.dond-ticker-update {
    text-align: center;
    font-size: 11px;
    color: rgba(250, 248, 245, 0.5);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: 'Inter', sans-serif;
}

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

@keyframes dond-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header */
.dond-header {
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.98) 0%, rgba(250, 248, 245, 0.95) 100%);
    border-bottom: 1px solid var(--dond-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 
        0 2px 21px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(222,20,60,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

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

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

.dond-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dond-primary);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.2px;
    font-family: 'Crimson Text', serif;
}

.dond-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--dond-accent) 0%, #a81033 50%, var(--dond-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #faf8f5;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 
        0 3px 12px rgba(216,16,61,0.3),
        0 1px 4px rgba(219,25,53,0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dond-logo:hover .dond-logo-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 
        0 5px 18px rgba(212,27,63,0.4),
        0 2px 6px rgba(215,16,55,0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

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

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

.dond-logo-text {
    font-weight: 600;
}

.dond-nav {
    display: flex;
    gap: 39px;
    align-items: center;
}

.dond-nav-link {
    color: var(--dond-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 21px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.dond-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(224,21,57,0.08);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.dond-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dond-accent), transparent);
    border-radius: 1px;
    transition: transform 0.3s;
}

.dond-nav-link:hover {
    color: var(--dond-accent);
    transform: translateY(-1px);
}

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

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

.dond-nav-link--active {
    color: var(--dond-accent);
    background: rgba(227,27,65,0.1);
}

.dond-nav-link--active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, transparent, var(--dond-accent), var(--dond-accent), transparent);
}

.dond-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

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

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

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

.dond-menu-line {
    width: 26px;
    height: 2px;
    background: var(--dond-primary);
    transition: all 0.3s ease;
}

.dond-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 21px 30px;
    background: var(--dond-bg);
    border-top: 1px solid var(--dond-border);
}

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

.dond-mobile-link {
    padding: 14px 0;
    color: var(--dond-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--dond-border);
    font-family: 'Inter', sans-serif;
}

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

/* Hero Section */
.dond-hero {
    background: linear-gradient(135deg, #231c13 0%, #1a0a0a 30%, #20251e 50%, #1a0a0a 70%, #212310 100%);
    color: #faf8f5;
    padding: 140px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 -50px 100px rgba(0, 0, 0, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.2);
}

.dond-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(220,12,59,0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(204,167,104,0.08) 0%, transparent 50%);
    animation: dond-pulse 5s ease-in-out infinite;
}

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

.dond-hero-badge {
    display: inline-block;
    padding: 12px 31px;
    background: linear-gradient(135deg, rgba(222,27,52,0.15) 0%, rgba(198,166,97,0.1) 100%);
    border: 1px solid rgba(216,23,53,0.3);
    border-radius: 27px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dond-gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 36px;
    box-shadow: 
        0 4px 13px rgba(219,13,62,0.15),
        0 1px 5px rgba(218,18,54,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    animation: dond-badge-glow 3s ease-in-out infinite;
}

@keyframes dond-badge-glow {
    0%, 100% { 
        box-shadow: 
            0 3px 15px rgba(215,23,56,0.15),
            0 1px 5px rgba(214,13,64,0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 5px 20px rgba(224,24,65,0.25),
            0 2px 8px rgba(227,14,58,0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.dond-hero-title {
    font-family: 'Crimson Text', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 26px 0;
    color: #faf8f5;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(220,19,67,0.2);
    position: relative;
}

.dond-hero-subtitle {
    font-size: 20px;
    color: rgba(250, 248, 245, 0.85);
    line-height: 1.7;
    margin: 0 0 44px 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

.dond-btn {
    display: inline-flex;
    align-items: center;
    padding: 17px 39px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.dond-btn-primary {
    background: linear-gradient(135deg, var(--dond-accent) 0%, #af152c 50%, var(--dond-accent) 100%);
    color: #faf8f5;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 5px 20px rgba(222,15,60,0.35), 
        0 2px 8px rgba(217,20,53,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.dond-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.dond-btn-primary:hover::after {
    opacity: 1;
}

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

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

.dond-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(215,26,64,0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dond-btn-secondary {
    background: transparent;
    color: #faf8f5;
    border: 1px solid rgba(250, 248, 245, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.dond-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(250, 248, 245, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Rating Section */
.dond-rating-section {
    background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 50%, #f5f1eb 100%);
    padding: 48px 0;
    border-top: 1px solid rgba(220,22,52,0.15);
    border-bottom: 1px solid rgba(223,12,60,0.15);
    position: relative;
    overflow: hidden;
}

.dond-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    flex-wrap: wrap;
    background: rgba(250, 248, 245, 0.9);
    padding: 22px 46px;
    border-radius: 38px;
    box-shadow: 
        0 5px 28px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(216,17,54,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(213,18,63,0.15);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
}

.dond-rating-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--dond-accent), var(--dond-gold), var(--dond-accent));
    border-radius: 43px;
    z-index: -1;
    opacity: 0.1;
    animation: dond-rating-border 4s ease-in-out infinite;
}

@keyframes dond-rating-border {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.dond-rating-label {
    font-size: 14px;
    color: var(--dond-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-family: 'Inter', sans-serif;
}

.dond-stars {
    display: flex;
    gap: 4px;
}

.dond-star {
    font-size: 21px;
    color: #dfdbe6;
}

.dond-star--filled {
    color: var(--dond-gold);
    text-shadow: 0 0 8px rgba(193,173,101,0.4);
    animation: dond-star-twinkle 2.5s ease-in-out infinite;
}

@keyframes dond-star-twinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.dond-rating-number {
    font-size: 26px;
    font-weight: 700;
    color: var(--dond-primary);
    position: relative;
    padding: 0 12px;
    font-family: 'Inter', sans-serif;
}

.dond-rating-reviews {
    font-size: 14px;
    color: var(--dond-text-light);
    font-family: 'Inter', sans-serif;
}

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

.dond-article {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.dond-intro {
    margin-bottom: 53px;
    padding: 34px;
    background: linear-gradient(135deg, rgba(215,17,56,0.04) 0%, rgba(195,172,102,0.02) 100%);
    border-radius: 15px;
    border-left: 3px solid var(--dond-accent);
    box-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(224,19,66,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.dond-intro::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 120px;
    background: radial-gradient(circle, rgba(221,20,52,0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.dond-lead {
    font-size: 24px;
    line-height: 1.85;
    color: var(--dond-text);
    margin-bottom: 31px;
    font-weight: 500;
    position: relative;
    padding-left: 24px;
}

.dond-lead::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 70px;
    font-family: 'Crimson Text', serif;
    color: var(--dond-accent);
    opacity: 0.25;
    line-height: 1;
}

.dond-article h2 {
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dond-primary);
    margin: 73px 0 29px 0;
    line-height: 1.25;
    position: relative;
    padding-bottom: 24px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.6px;
}

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

.dond-article h3 {
    font-family: 'Crimson Text', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--dond-primary);
    margin: 47px 0 25px 0;
}

.dond-article p {
    margin-bottom: 28px;
    line-height: 1.9;
    color: var(--dond-text);
    position: relative;
    padding-left: 25px;
}

.dond-article p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, var(--dond-accent), var(--dond-gold));
    border-radius: 50%;
    box-shadow: 
        0 0 5px rgba(223,19,53,0.4),
        0 0 4px rgba(203,174,98,0.3);
    opacity: 0.7;
    animation: dond-dot-pulse 2s ease-in-out infinite;
}

@keyframes dond-dot-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

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

.dond-list,
.dond-list-ordered {
    margin: 35px 0;
    padding-left: 36px;
    position: relative;
}

.dond-list::before,
.dond-list-ordered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--dond-accent) 0%, 
        rgba(217,14,54,0.8) 25%,
        var(--dond-gold) 50%,
        rgba(197,169,99,0.8) 75%,
        var(--dond-accent) 100%);
    border-radius: 1px;
    box-shadow: 
        0 0 7px rgba(219,26,55,0.3),
        inset 0 0 4px rgba(199,168,100,0.2);
}

.dond-list li,
.dond-list-ordered li {
    margin-bottom: 15px;
    line-height: 1.85;
    color: var(--dond-text);
    padding-left: 16px;
    position: relative;
    transition: all 0.3s;
}

.dond-list li::marker {
    color: var(--dond-accent);
    font-weight: 600;
}

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

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

.dond-image-wrapper {
    margin: 55px 0;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 
        0 12px 45px var(--dond-shadow),
        0 6px 25px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(212,15,56,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    border: 2px solid rgba(225,16,66,0.15);
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
}

.dond-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(224,22,58,0.02) 0%, transparent 50%, rgba(208,164,104,0.02) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
}

.dond-image-wrapper:hover::after {
    opacity: 1;
}

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

@keyframes dond-border-glow {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.4; }
}

.dond-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    opacity: 0;
    filter: blur(5px);
}

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

.dond-image-wrapper:hover .dond-article-image {
    transform: scale(1.03);
}

.dond-image-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(226,21,59,0.2);
    border-top-color: var(--dond-accent);
    border-right-color: var(--dond-gold);
    border-radius: 50%;
    animation: dond-spin 1s linear infinite;
    z-index: 2;
    box-shadow: 
        0 0 15px rgba(221,27,60,0.3),
        inset 0 0 10px rgba(201,165,89,0.2);
}

@keyframes dond-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.dond-image-wrapper img[loading="lazy"] {
    background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 100%);
    min-height: 200px;
}

/* Testimonial Slider */
.dond-testimonial-section {
    margin: 83px 0;
    padding: 75px 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 30%, #f5f1eb 70%, #faf8f5 100%);
    border-radius: 21px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 35px rgba(0, 0, 0, 0.06),
        0 3px 15px rgba(222,12,54,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(219,17,63,0.1);
}

.dond-testimonial-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(218,22,64,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: dond-float 8s ease-in-out infinite;
}

.dond-testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194,161,93,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: dond-float 10s ease-in-out infinite reverse;
}

@keyframes dond-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.dond-testimonial-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    padding-bottom: 35px;
}

.dond-testimonial-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dond-accent), var(--dond-gold), var(--dond-accent), transparent);
    border-radius: 3px;
}

.dond-testimonial-title {
    font-family: 'Crimson Text', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--dond-primary);
    margin-bottom: 15px;
}

.dond-testimonial-subtitle {
    font-size: 18px;
    color: var(--dond-text-light);
}

.dond-testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 33px;
}

.dond-testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.dond-testimonial-item {
    min-width: 100%;
    padding: 0 17px;
    box-sizing: border-box;
}

.dond-testimonial-card {
    background: linear-gradient(135deg, var(--dond-bg) 0%, #f5f1eb 100%);
    padding: 47px 43px;
    border-radius: 14px;
    box-shadow: 
        0 7px 20px var(--dond-shadow),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(215,24,57,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(224,13,67,0.1);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.dond-testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227,18,59,0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.dond-testimonial-card:hover::after {
    opacity: 1;
}

.dond-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 35px var(--dond-shadow-hover),
        0 4px 15px rgba(226,24,60,0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.dond-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    font-family: 'Crimson Text', serif;
    color: var(--dond-accent);
    opacity: 0.15;
    line-height: 1;
}

.dond-testimonial-text {
    font-size: 17px;
    line-height: 1.85;
    color: var(--dond-text);
    margin-bottom: 31px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.dond-testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.dond-testimonial-avatar {
    width: 58px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dond-accent), var(--dond-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #faf8f5;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220,23,61,0.3);
}

.dond-testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dond-primary);
    margin-bottom: 5px;
    font-family: 'Crimson Text', serif;
}

.dond-testimonial-info p {
    font-size: 14px;
    color: var(--dond-text-light);
    margin: 0;
    padding: 0;
}

.dond-testimonial-info p::before {
    display: none;
}

.dond-testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
}

.dond-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(223,13,53,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dond-testimonial-dot.active {
    background: var(--dond-accent);
    width: 32px;
    border-radius: 5px;
}

/* Comparison Table */
.dond-comparison-section {
    margin: 73px 0;
}

.dond-comparison-table {
    overflow-x: auto;
    margin-top: 32px;
}

.dond-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(135deg, var(--dond-bg) 0%, #f5f1eb 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 35px var(--dond-shadow),
        0 3px 15px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(217,24,54,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(218,26,56,0.1);
}

.dond-table thead {
    background: linear-gradient(135deg, #282220 0%, #1a0a0a 50%, #251512 100%);
    color: #faf8f5;
    position: relative;
}

.dond-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dond-accent), transparent);
}

.dond-table th {
    padding: 23px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.dond-table tbody tr {
    border-bottom: 1px solid var(--dond-border);
    transition: all 0.3s ease;
    position: relative;
}

.dond-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--dond-accent), var(--dond-gold));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.dond-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(213,19,65,0.04) 0%, #f8f6f2 10%, #f8f6f2 90%, rgba(212,25,57,0.04) 100%);
    box-shadow: inset 0 0 15px rgba(215,15,66,0.04);
}

.dond-table tbody tr:hover::before {
    transform: scaleX(1);
}

.dond-table tbody tr:last-child {
    border-bottom: none;
}

.dond-table td {
    padding: 22px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dond-text);
}

.dond-table td small {
    display: block;
    color: var(--dond-text-light);
    font-size: 13px;
    margin-top: 5px;
}

.dond-badge {
    display: inline-block;
    padding: 6px 11px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'Inter', sans-serif;
}

.dond-badge--yes {
    background: linear-gradient(135deg, rgba(39,134,87,0.12), rgba(50,140,96,0.08));
    color: var(--dond-success);
    border: 1px solid rgba(49,130,88,0.25);
    box-shadow: 0 2px 6px rgba(52,139,89,0.15);
}

.dond-badge--no {
    background: linear-gradient(135deg, rgba(207,69,66,0.12), rgba(202,75,75,0.08));
    color: var(--dond-danger);
    border: 1px solid rgba(201,80,67,0.25);
    box-shadow: 0 2px 6px rgba(204,70,76,0.15);
}

/* Winner Section */
.dond-winner-section {
    margin: 83px 0;
    padding: 75px 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 30%, #f5f1eb 70%, #faf8f5 100%);
    border-radius: 21px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 35px rgba(0, 0, 0, 0.06),
        0 3px 15px rgba(217,12,63,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(218,17,64,0.1);
}

.dond-winner-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(213,22,57,0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: dond-float 12s ease-in-out infinite;
}

.dond-winner-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(193,161,102,0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: dond-float 14s ease-in-out infinite reverse;
}

.dond-winner-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    padding-bottom: 30px;
}

.dond-winner-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dond-accent), var(--dond-gold), var(--dond-accent), transparent);
    border-radius: 1px;
}

.dond-winner-title {
    font-family: 'Crimson Text', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--dond-primary);
    margin-bottom: 17px;
}

.dond-winner-subtitle {
    font-size: 18px;
    color: var(--dond-text-light);
}

.dond-winner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 33px;
    padding: 0 29px;
}

.dond-winner-card {
    background: linear-gradient(135deg, var(--dond-bg) 0%, #f5f1eb 100%);
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 
        0 7px 22px var(--dond-shadow),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(214,27,67,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(227,12,52,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dond-winner-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(226,18,61,0.05));
    transition: height 0.4s;
}

.dond-winner-card:hover::after {
    height: 100%;
}

.dond-winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dond-accent), var(--dond-gold), var(--dond-accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.dond-winner-card:hover::before {
    transform: scaleX(1);
}

.dond-winner-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 15px 45px var(--dond-shadow-hover),
        0 8px 28px var(--dond-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(220,14,62,0.25);
}

.dond-winner-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--dond-accent) 0%, #b10c35 50%, var(--dond-accent) 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #faf8f5;
    box-shadow: 
        0 6px 18px rgba(223,23,54,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s;
}

.dond-winner-card:hover .dond-winner-icon {
    transform: rotate(5deg) scale(1.08);
    box-shadow: 
        0 8px 24px rgba(217,19,55,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dond-winner-icon svg {
    width: 30px;
    height: 30px;
}

.dond-winner-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dond-primary);
    margin-bottom: 19px;
    font-family: 'Crimson Text', serif;
    position: relative;
    padding-bottom: 9px;
}

.dond-winner-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, var(--dond-accent), transparent);
    border-radius: 1px;
}

.dond-winner-card p {
    font-size: 17px;
    color: var(--dond-text-light);
    line-height: 1.75;
    margin: 0;
    padding: 0;
}

.dond-winner-card p::before {
    display: none;
}

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

.dond-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(219,14,64,0.15) 20%, 
        var(--dond-accent) 50%, 
        rgba(218,20,57,0.15) 80%, 
        transparent
    );
    transform: translateY(-50%);
}

.dond-section-divider::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--dond-accent), var(--dond-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #faf8f5;
    box-shadow: 
        0 0 25px rgba(213,13,65,0.4),
        0 0 15px rgba(193,168,95,0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: dond-divider-pulse 3s ease-in-out infinite;
}

@keyframes dond-divider-pulse {
    0%, 100% { 
        box-shadow: 
            0 0 25px rgba(227,16,60,0.4),
            0 0 15px rgba(207,174,90,0.3),
            0 4px 12px rgba(0, 0, 0, 0.2),
            inset 0 2px 4px rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 35px rgba(223,26,63,0.6),
            0 0 25px rgba(203,165,92,0.5),
            0 4px 12px rgba(0, 0, 0, 0.2),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
}

/* FAQ Section */
.dond-faq-section {
    margin: 67px 0;
}

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

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

.dond-faq-title {
    font-family: 'Crimson Text', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--dond-primary);
    margin-bottom: 17px;
}

.dond-faq-subtitle {
    font-size: 15px;
    color: var(--dond-text-light);
}

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

.dond-faq-item {
    background: linear-gradient(135deg, var(--dond-bg) 0%, #f5f1eb 100%);
    border: 1px solid var(--dond-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    position: relative;
}

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

.dond-faq-item:hover {
    border-color: rgba(218,27,65,0.4);
    box-shadow: 
        0 6px 20px var(--dond-shadow),
        0 0 0 1px rgba(213,16,58,0.1);
    transform: translateX(3px);
}

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

.dond-faq-item.active {
    border-color: var(--dond-accent);
    box-shadow: 
        0 10px 30px var(--dond-shadow),
        0 4px 18px var(--dond-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
}

.dond-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 19px;
    padding: 28px 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.dond-faq-question:hover {
    background: rgba(215,12,59,0.04);
}

.dond-faq-question-text {
    font-size: 19px;
    font-weight: 600;
    color: var(--dond-primary);
    line-height: 1.4;
    font-family: 'Crimson Text', serif;
}

.dond-faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214,21,67,0.12), rgba(206,176,89,0.08));
    border-radius: 50%;
    color: var(--dond-accent);
    transition: all 0.4s ease;
    box-shadow: 0 2px 6px rgba(224,17,60,0.15);
    border: 1px solid rgba(227,23,53,0.15);
}

.dond-faq-item.active .dond-faq-icon {
    transform: rotate(180deg) scale(1.1);
    background: linear-gradient(135deg, var(--dond-accent), var(--dond-gold));
    color: #faf8f5;
    box-shadow: 
        0 4px 12px rgba(226,12,61,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.dond-faq-item.active .dond-faq-answer {
    max-height: 1000px;
}

.dond-faq-answer-content {
    padding: 0 30px 25px;
    font-size: 19px;
    line-height: 1.8;
    color: var(--dond-text);
}

.dond-faq-answer-content p {
    margin-bottom: 11px;
    padding: 0;
}

.dond-faq-answer-content p::before {
    display: none;
}

/* Footer */
.dond-footer {
    background: linear-gradient(135deg, #2f1921 0%, #1a0a0a 50%, #302018 100%);
    color: rgba(250, 248, 245, 0.8);
    padding: 85px 0 48px;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 50px 100px rgba(0, 0, 0, 0.4),
        0 -10px 40px rgba(0, 0, 0, 0.2);
}

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

.dond-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(217,13,64,0.015) 100px, rgba(216,18,57,0.015) 101px);
    animation: dond-drift 35s linear infinite;
}

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

.dond-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 58px;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
    padding-bottom: 47px;
    border-bottom: 2px solid rgba(250, 248, 245, 0.1);
}

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

.dond-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

.dond-footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(250, 248, 245, 0.65);
}

.dond-footer-title {
    font-size: 17px;
    font-weight: 600;
    color: #faf8f5;
    margin-bottom: 20px;
    font-family: 'Crimson Text', serif;
}

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

.dond-footer-links li {
    margin-bottom: 15px;
}

.dond-footer-links a {
    color: rgba(250, 248, 245, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 23px;
    display: inline-block;
}

.dond-footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: var(--dond-accent);
}

.dond-footer-links a:hover {
    color: var(--dond-accent);
    transform: translateX(4px);
}

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

.dond-footer-bottom {
    padding-top: 38px;
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(250, 248, 245, 0.5);
}

/* Scroll Progress Indicator */
.dond-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--dond-accent), var(--dond-gold), var(--dond-accent));
    z-index: 9999;
    transition: width 0.1s;
    box-shadow: 0 0 8px rgba(214,25,52,0.4);
}

/* Additional Visual Details */
.dond-article h2::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--dond-accent), var(--dond-gold), var(--dond-accent));
    border-radius: 1px;
    opacity: 0.3;
}

.dond-article h3::before {
    content: '▸';
    position: absolute;
    left: -20px;
    color: var(--dond-accent);
    font-size: 18px;
    opacity: 0.5;
}

.dond-list li::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--dond-accent), var(--dond-gold));
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(225,14,60,0.4);
}

.dond-list-ordered li::marker {
    color: var(--dond-accent);
    font-weight: 700;
    font-size: 1.1em;
}

/* Enhanced hover effects */
.dond-nav-link:hover {
    text-shadow: 0 0 8px rgba(224,20,53,0.2);
}

.dond-btn-primary:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(227,26,61,0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dond-btn-secondary:active {
    transform: translateY(0);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.dond-btn:focus,
.dond-nav-link:focus,
.dond-faq-question:focus {
    outline: 2px solid var(--dond-accent);
    outline-offset: 3px;
}

/* Print styles */
@media print {
    .dond-ticker,
    .dond-header,
    .dond-footer,
    .dond-hero-actions,
    .dond-testimonial-nav {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .dond-ticker-track {
        gap: 23px;
        font-size: 16px;
    }

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

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

    .dond-table {
        font-size: 13px;
    }

    .dond-table th,
    .dond-table td {
        padding: 17px;
    }

    .dond-winner-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .dond-winner-header h2 {
        font-size: 30px;
    }

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

    .dond-nav {
        display: none;
    }

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

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

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

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

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

    .dond-testimonial-title,
    .dond-faq-title {
        font-size: 30px;
    }

    .dond-faq-question {
        padding: 24px;
    }

    .dond-faq-answer-content {
        padding: 0 25px 22px;
    }
}


/* ==================
   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: 5px;
    border: 2px 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: 11px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 10px 25px;
    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 21px;
    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: 7px 19px;
        font-size: 10px;
    }
}
/* ==================
   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: 7px !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: 9px 22px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 8px !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 */
.dond-wrapper, .dond-content, .dond-hero-inner, .dond-companies-container, 
.dond-article, .dond-container, .dond-footer-inner, .dond-main {
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

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