/* ═══════════════════════════════════════════════════════════════════════════
   STELLAR FORTUNE CASINO — AUSTRALIAN ONLINE CASINO
   Premium Casino Design System — Sharp Edges, Elegant Gold & Deep Black
═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

/* ═══════════════ DESIGN TOKENS ═══════════════ */
:root {
    --stellarGoldPrimary: #D4AF37;
    --stellarGoldLight: #F4E4A1;
    --stellarGoldDark: #A08830;
    --stellarBlackDeep: #0A0A0A;
    --stellarBlackSoft: #141414;
    --stellarBlackCard: #1A1A1A;
    --stellarRedAccent: #C41E3A;
    --stellarGreenWin: #228B22;
    --stellarWhitePure: #FFFFFF;
    --stellarWhiteMuted: #E8E8E8;
    --stellarGrayText: #9A9A9A;
    --stellarGrayBorder: #2A2A2A;
    
    --fontDisplay: 'Cinzel', serif;
    --fontBody: 'Raleway', sans-serif;
    
    --transitionSmooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadowGold: 0 4px 30px rgba(212, 175, 55, 0.15);
    --shadowDeep: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ═══════════════ RESET & BASE ═══════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--fontBody);
    background-color: var(--stellarBlackDeep);
    color: var(--stellarWhiteMuted);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transitionSmooth);
}

/* ═══════════════ DISCLAIMER BANNER ═══════════════ */
.zyx__disclaimer__ribbon {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--stellarBlackCard) 0%, var(--stellarBlackSoft) 100%);
    border-top: 1px solid var(--stellarGoldDark);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
    font-size: 0.75rem;
    color: var(--stellarGrayText);
    animation: slideUpRibbon 0.5s ease-out;
}

@keyframes slideUpRibbon {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.zyx__disclaimer__ribbon.hidden {
    display: none;
}

.zyx__disclaimer__content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.zyx__disclaimer__badge18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid var(--stellarRedAccent);
    color: var(--stellarRedAccent);
    font-weight: 700;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.zyx__disclaimer__okBtn {
    background: var(--stellarGoldPrimary);
    color: var(--stellarBlackDeep);
    border: none;
    padding: 6px 20px;
    font-family: var(--fontBody);
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transitionSmooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zyx__disclaimer__okBtn:hover {
    background: var(--stellarGoldLight);
    transform: scale(1.05);
}

/* ═══════════════ HEADER CONSTELLATION ═══════════════ */
.qwk__masthead__constellation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--stellarBlackDeep) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-bottom: 1px solid var(--stellarGrayBorder);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.qwk__masthead__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.qwk__logo__vessel {
    flex-shrink: 0;
}

.qwk__logo__image {
    height: 45px;
    width: auto;
}

/* ═══════════════ NAVIGATION NEBULA ═══════════════ */
.nvb__navigation__nebula {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nvb__menu__primary {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nvb__menu__item {
    position: relative;
}

.nvb__menu__link {
    font-family: var(--fontBody);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--stellarWhiteMuted);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nvb__menu__link:hover {
    color: var(--stellarGoldPrimary);
}

.nvb__dropdown__arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: var(--transitionSmooth);
}

.nvb__menu__item:hover .nvb__dropdown__arrow {
    transform: rotate(180deg);
}

/* DROPDOWN LEVEL 1 */
.nvb__dropdown__panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--stellarBlackCard);
    border: 1px solid var(--stellarGrayBorder);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transitionSmooth);
    box-shadow: var(--shadowDeep);
}

.nvb__menu__item:hover > .nvb__dropdown__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nvb__dropdown__list {
    list-style: none;
}

.nvb__dropdown__item {
    position: relative;
}

.nvb__dropdown__link {
    display: block;
    padding: 12px 20px;
    font-size: 0.85rem;
    color: var(--stellarWhiteMuted);
    border-bottom: 1px solid var(--stellarGrayBorder);
    transition: var(--transitionSmooth);
}

.nvb__dropdown__link:hover {
    background: var(--stellarBlackSoft);
    color: var(--stellarGoldPrimary);
    padding-left: 25px;
}

.nvb__dropdown__item:last-child .nvb__dropdown__link {
    border-bottom: none;
}

/* DROPDOWN LEVEL 2 */
.nvb__subdropdown__panel {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: var(--stellarBlackCard);
    border: 1px solid var(--stellarGrayBorder);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transitionSmooth);
    box-shadow: var(--shadowDeep);
}

.nvb__dropdown__item:hover > .nvb__subdropdown__panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* PLAY CTA BUTTON */
.cta__play__button {
    background: linear-gradient(135deg, var(--stellarGoldPrimary) 0%, var(--stellarGoldDark) 100%);
    color: var(--stellarBlackDeep);
    padding: 12px 30px;
    font-family: var(--fontDisplay);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transitionSmooth);
    position: relative;
    overflow: hidden;
}

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

.cta__play__button:hover::before {
    left: 100%;
}

.cta__play__button:hover {
    box-shadow: var(--shadowGold);
    transform: translateY(-2px);
}

/* MOBILE BURGER */
.brg__burger__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.brg__burger__line {
    width: 25px;
    height: 2px;
    background: var(--stellarGoldPrimary);
    transition: var(--transitionSmooth);
}

/* ═══════════════ MAIN CONTENT ═══════════════ */
.mxz__content__universe {
    margin-top: 80px;
    padding-bottom: 60px;
}

/* ═══════════════ HERO HEADLINE ═══════════════ */
.hjk__hero__headline {
    background: linear-gradient(180deg, var(--stellarBlackSoft) 0%, var(--stellarBlackDeep) 100%);
    padding: 60px 30px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hjk__hero__headline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--stellarGoldPrimary), transparent);
}

.hjk__primary__title {
    font-family: var(--fontDisplay);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--stellarWhitePure);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInTitle 1s ease-out;
}

.hjk__primary__title .golden__accent {
    color: var(--stellarGoldPrimary);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════ ARTICLE META ═══════════════ */
.rtz__article__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 30px;
    background: var(--stellarBlackCard);
    border-top: 1px solid var(--stellarGrayBorder);
    border-bottom: 1px solid var(--stellarGrayBorder);
    flex-wrap: wrap;
}

.rtz__author__avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid var(--stellarGoldPrimary);
}

.rtz__author__name {
    font-weight: 600;
    color: var(--stellarWhitePure);
    font-size: 0.9rem;
}

.rtz__meta__divider {
    width: 4px;
    height: 4px;
    background: var(--stellarGoldPrimary);
    transform: rotate(45deg);
}

.rtz__update__date {
    color: var(--stellarGrayText);
    font-size: 0.85rem;
}

.rtz__update__date time {
    color: var(--stellarGoldLight);
}

/* ═══════════════ INFO BLOCK ═══════════════ */
.plm__info__block {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 30px;
}

.plm__info__text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--stellarWhiteMuted);
    text-align: center;
}

.plm__info__text strong {
    color: var(--stellarGoldPrimary);
}

/* ═══════════════ CASINO SHOWCASE ═══════════════ */
.wvx__showcase__arena {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 30px;
}

.wvx__showcase__title {
    font-family: var(--fontDisplay);
    font-size: 1.1rem;
    color: var(--stellarGoldPrimary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    position: relative;
}

.wvx__showcase__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--stellarGoldPrimary);
    margin: 15px auto 0;
}

/* CASINO CARDS TABLE */
.tkd__brands__table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tkd__brand__row {
    background: var(--stellarBlackCard);
    border: 1px solid var(--stellarGrayBorder);
    transition: var(--transitionSmooth);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    gap: 20px;
}

.tkd__brand__row:hover {
    border-color: var(--stellarGoldDark);
    box-shadow: var(--shadowGold);
}

.tkd__brand__cell {
    text-align: center;
    flex-shrink: 0;
}

.tkd__brand__logo__cell {
    width: 180px;
}

.tkd__brand__cell:nth-child(2) {
    width: 200px;
    text-align: left;
}

.tkd__brand__bonus__cell {
    flex: 1;
    text-align: center;
}

.tkd__brand__cell:nth-child(4) {
    width: 150px;
}

.tkd__brand__cell:last-child {
    width: 120px;
}

.tkd__brand__logo__cell {
    width: 180px;
}

.tkd__brand__logo {
    max-width: 150px;
    max-height: 60px;
    margin: 0 auto;
    filter: brightness(1.1);
    transition: var(--transitionSmooth);
}

.tkd__brand__row:hover .tkd__brand__logo {
    transform: scale(1.05);
}

.tkd__brand__name {
    font-family: var(--fontDisplay);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--stellarWhitePure);
}

.tkd__brand__bonus__cell {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
}

.tkd__bonus__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--stellarGoldDark) 0%, var(--stellarGoldPrimary) 100%);
    color: var(--stellarBlackDeep);
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1rem;
}

.tkd__bonus__subtext {
    font-size: 0.75rem;
    color: var(--stellarGrayText);
    margin-top: 5px;
}

/* STARS RATING */
.tkd__stars__rating {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.tkd__star__icon {
    width: 18px;
    height: 18px;
    fill: var(--stellarGoldPrimary);
    animation: starPulse 2s ease-in-out infinite;
}

.tkd__star__icon:nth-child(2) { animation-delay: 0.1s; }
.tkd__star__icon:nth-child(3) { animation-delay: 0.2s; }
.tkd__star__icon:nth-child(4) { animation-delay: 0.3s; }
.tkd__star__icon:nth-child(5) { animation-delay: 0.4s; }
.tkd__star__icon:nth-child(6) { animation-delay: 0.5s; }
.tkd__star__icon:nth-child(7) { animation-delay: 0.6s; }

@keyframes starPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* PLAY BUTTON IN TABLE */
.tkd__play__btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--stellarGoldPrimary) 0%, var(--stellarGoldDark) 100%);
    color: var(--stellarBlackDeep);
    padding: 14px 35px;
    font-family: var(--fontDisplay);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transitionSmooth);
    text-decoration: none;
}

.tkd__play__btn:hover {
    background: linear-gradient(135deg, var(--stellarGoldLight) 0%, var(--stellarGoldPrimary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ═══════════════ TEXT BLOCKS — UNIVERSAL STYLING ═══════════════ */
.mytext__block__placeholder {
    max-width: 900px;
    margin: 50px auto;
    padding: 50px 40px;
    background: linear-gradient(145deg, var(--stellarBlackCard) 0%, rgba(26, 26, 26, 0.8) 100%);
    border-left: 3px solid var(--stellarGoldPrimary);
    position: relative;
}

.mytext__block__placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ═══════ HEADINGS INSIDE TEXT BLOCK ═══════ */
.mytext__block__placeholder h2 {
    font-family: var(--fontDisplay);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--stellarWhitePure);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--stellarGrayBorder);
    position: relative;
    line-height: 1.3;
}

.mytext__block__placeholder h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--stellarGoldPrimary);
}

.mytext__block__placeholder h3 {
    font-family: var(--fontDisplay);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--stellarGoldLight);
    margin: 35px 0 18px 0;
    padding-left: 15px;
    border-left: 2px solid var(--stellarGoldPrimary);
    line-height: 1.4;
}

.mytext__block__placeholder h4 {
    font-family: var(--fontBody);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--stellarWhiteMuted);
    margin: 25px 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════ PARAGRAPHS ═══════ */
.mytext__block__placeholder p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--stellarWhiteMuted);
    margin: 0 0 20px 0;
}

.mytext__block__placeholder p:last-child {
    margin-bottom: 0;
}

.mytext__block__placeholder p strong {
    color: var(--stellarGoldPrimary);
    font-weight: 600;
}

.mytext__block__placeholder p em {
    color: var(--stellarGoldLight);
    font-style: italic;
}

/* ═══════ LINKS ═══════ */
.mytext__block__placeholder a {
    color: var(--stellarGoldPrimary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transitionSmooth);
}

.mytext__block__placeholder a:hover {
    color: var(--stellarGoldLight);
    border-bottom-color: var(--stellarGoldLight);
}

/* ═══════ UNORDERED LISTS ═══════ */
.mytext__block__placeholder ul {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.mytext__block__placeholder ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--stellarWhiteMuted);
    line-height: 1.7;
}

.mytext__block__placeholder ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--stellarGoldPrimary);
    font-size: 0.6rem;
    line-height: 1.7rem;
}

.mytext__block__placeholder ul li:last-child {
    margin-bottom: 0;
}

/* ═══════ ORDERED LISTS ═══════ */
.mytext__block__placeholder ol {
    list-style: none;
    margin: 25px 0;
    padding: 0;
    counter-reset: listCounter;
}

.mytext__block__placeholder ol li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    color: var(--stellarWhiteMuted);
    line-height: 1.7;
    counter-increment: listCounter;
}

.mytext__block__placeholder ol li::before {
    content: counter(listCounter);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--stellarGoldDark) 0%, var(--stellarGoldPrimary) 100%);
    color: var(--stellarBlackDeep);
    font-family: var(--fontDisplay);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mytext__block__placeholder ol li:last-child {
    margin-bottom: 0;
}

/* ═══════ TABLES ═══════ */
.mytext__block__placeholder table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: var(--stellarBlackSoft);
    border: 1px solid var(--stellarGrayBorder);
}

.mytext__block__placeholder thead {
    background: linear-gradient(90deg, var(--stellarGoldDark) 0%, var(--stellarGoldPrimary) 100%);
}

.mytext__block__placeholder thead tr th {
    padding: 15px 20px;
    text-align: left;
    font-family: var(--fontDisplay);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--stellarBlackDeep);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mytext__block__placeholder tbody tr {
    border-bottom: 1px solid var(--stellarGrayBorder);
    transition: var(--transitionSmooth);
}

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

.mytext__block__placeholder tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.mytext__block__placeholder tbody tr td {
    padding: 14px 20px;
    color: var(--stellarWhiteMuted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mytext__block__placeholder tbody tr td:first-child {
    color: var(--stellarGoldLight);
    font-weight: 500;
}

/* ═══════ BLOCKQUOTES ═══════ */
.mytext__block__placeholder blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    border-left: 3px solid var(--stellarGoldPrimary);
    font-style: italic;
    color: var(--stellarGoldLight);
    position: relative;
}

.mytext__block__placeholder blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: var(--fontDisplay);
    font-size: 3rem;
    color: var(--stellarGoldDark);
    opacity: 0.3;
    line-height: 1;
}

.mytext__block__placeholder blockquote p {
    margin: 0;
    padding-left: 20px;
}

/* ═══════ HORIZONTAL RULE ═══════ */
.mytext__block__placeholder hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stellarGoldPrimary), transparent);
    margin: 40px 0;
}

/* ═══════ CODE INLINE ═══════ */
.mytext__block__placeholder code {
    background: var(--stellarBlackDeep);
    color: var(--stellarGoldLight);
    padding: 3px 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    border: 1px solid var(--stellarGrayBorder);
}

/* ═══════ PREFORMATTED / CODE BLOCKS ═══════ */
.mytext__block__placeholder pre {
    background: var(--stellarBlackDeep);
    border: 1px solid var(--stellarGrayBorder);
    padding: 20px;
    margin: 25px 0;
    overflow-x: auto;
}

.mytext__block__placeholder pre code {
    background: none;
    border: none;
    padding: 0;
    color: var(--stellarGoldLight);
}

/* ═══════ IMAGES INSIDE TEXT ═══════ */
.mytext__block__placeholder img {
    max-width: 100%;
    height: auto;
    margin: 25px 0;
    border: 1px solid var(--stellarGrayBorder);
}

/* ═══════ FIGURE WITH CAPTION ═══════ */
.mytext__block__placeholder figure {
    margin: 30px 0;
}

.mytext__block__placeholder figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--stellarGrayText);
    margin-top: 10px;
    font-style: italic;
}

/* ═══════ RESPONSIVE TEXT BLOCKS ═══════ */
@media (max-width: 768px) {
    .mytext__block__placeholder {
        padding: 30px 20px;
        margin: 30px 15px;
    }

    .mytext__block__placeholder h2 {
        font-size: 1.4rem;
    }

    .mytext__block__placeholder h3 {
        font-size: 1.1rem;
    }

    .mytext__block__placeholder table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .mytext__block__placeholder thead tr th,
    .mytext__block__placeholder tbody tr td {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .mytext__block__placeholder ul li,
    .mytext__block__placeholder ol li {
        padding-left: 20px;
    }

    .mytext__block__placeholder ol li::before {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
}

/* ═══════════════ EXPERT AUTHOR ═══════════════ */
.xpr__expert__author {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
}

.xpr__expert__card {
    background: linear-gradient(135deg, var(--stellarBlackCard) 0%, var(--stellarBlackSoft) 100%);
    border: 1px solid var(--stellarGrayBorder);
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
}

.xpr__expert__card::before {
    content: 'EXPERT AUTHOR';
    position: absolute;
    top: -12px;
    left: 40px;
    background: var(--stellarGoldPrimary);
    color: var(--stellarBlackDeep);
    padding: 4px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.xpr__photo__frame {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border: 3px solid var(--stellarGoldPrimary);
    overflow: hidden;
}

.xpr__photo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transitionSmooth);
}

.xpr__photo__frame:hover .xpr__photo__img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.xpr__bio__content {
    flex: 1;
}

.xpr__author__name {
    font-family: var(--fontDisplay);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--stellarWhitePure);
    margin-bottom: 5px;
}

.xpr__author__title {
    color: var(--stellarGoldPrimary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.xpr__bio__text {
    color: var(--stellarWhiteMuted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ═══════════════ FOOTER GALAXY ═══════════════ */
.ftr__footer__galaxy {
    background: linear-gradient(180deg, var(--stellarBlackSoft) 0%, var(--stellarBlackDeep) 100%);
    border-top: 1px solid var(--stellarGrayBorder);
    padding: 60px 30px 30px;
    margin-top: 60px;
}

.ftr__footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ftr__columns__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.ftr__column__title {
    font-family: var(--fontDisplay);
    font-size: 1rem;
    color: var(--stellarGoldPrimary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--stellarGrayBorder);
}

.ftr__column__list {
    list-style: none;
}

.ftr__column__item {
    margin-bottom: 10px;
}

.ftr__column__link {
    color: var(--stellarGrayText);
    font-size: 0.9rem;
    transition: var(--transitionSmooth);
    display: inline-block;
}

.ftr__column__link:hover {
    color: var(--stellarGoldPrimary);
    padding-left: 5px;
}

/* COPYRIGHT */
.ftr__copyright__bar {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--stellarGrayBorder);
}

.ftr__copyright__text {
    color: var(--stellarGrayText);
    font-size: 0.8rem;
}

.ftr__copyright__text a {
    color: var(--stellarGoldPrimary);
}

/* ═══════════════ RESPONSIVE MOBILE ═══════════════ */
@media (max-width: 992px) {
    .nvb__navigation__nebula {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--stellarBlackCard);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transitionSmooth);
        border-bottom: 1px solid var(--stellarGrayBorder);
    }

    .nvb__navigation__nebula.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nvb__menu__primary {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nvb__menu__link {
        padding: 15px 0;
        border-bottom: 1px solid var(--stellarGrayBorder);
        width: 100%;
    }

    .nvb__dropdown__panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
        background: var(--stellarBlackSoft);
    }

    .nvb__menu__item.open > .nvb__dropdown__panel {
        display: block;
    }

    .nvb__subdropdown__panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--stellarBlackDeep);
    }

    .nvb__dropdown__item.open > .nvb__subdropdown__panel {
        display: block;
    }

    .brg__burger__toggle {
        display: flex;
    }

    .brg__burger__toggle.active .brg__burger__line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .brg__burger__toggle.active .brg__burger__line:nth-child(2) {
        opacity: 0;
    }

    .brg__burger__toggle.active .brg__burger__line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .cta__play__button {
        order: -1;
        width: 100%;
        text-align: center;
    }

    /* TABLE RESPONSIVE */
    .tkd__brands__table,
    .tkd__brand__row,
    .tkd__brand__cell {
        display: block;
        width: 100%;
    }

    .tkd__brand__row {
        margin-bottom: 20px;
        padding: 25px 20px;
    }

    .tkd__brand__cell {
        padding: 10px 0;
    }

    .tkd__brand__logo__cell {
        width: 100%;
    }

    .ftr__columns__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .xpr__expert__card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .qwk__masthead__inner {
        padding: 0 15px;
        height: 70px;
    }

    .qwk__logo__image {
        height: 35px;
    }

    .hjk__hero__headline {
        padding: 40px 15px 30px;
    }

    .rtz__article__meta {
        padding: 15px;
        gap: 10px;
    }

    .rtz__meta__divider {
        display: none;
    }

    .plm__info__block,
    .wvx__showcase__arena,
    .xpr__expert__card {
        padding: 20px 15px;
    }

    .xpr__expert__card::before {
        left: 15px;
    }

    .zyx__disclaimer__ribbon {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
}

/* ═══════════════ LAZY LOAD ANIMATION ═══════════════ */
.lazy__load__img {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.lazy__load__img.loaded {
    opacity: 1;
}

/* ═══════════════ PRINT STYLES ═══════════════ */
@media print {
    .qwk__masthead__constellation,
    .zyx__disclaimer__ribbon {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
