﻿
:root {
    --gold: #c9a84c;
    --gold-light: #e8d08a;
    --gold-dim: #7a6228;
    --gold-glow: rgba(201,168,76,0.18);
    --bg: #0e0e0e;
    --bg2: #141414;
    --bg3: #1b1b1b;
    --card: #191919;
    --border: rgba(201,168,76,0.15);
    --border-hi: rgba(201,168,76,0.55);
    --txt: #e8e4dc;
    --txt2: #9a9080;
    --red: #c0392b;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: var(--bg);
    color: var(--txt);
    direction: rtl;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-image: url('../img/mainbg.jpg');
    pointer-events: none;
    z-index: 0;
    opacity: .2;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 4px;
}

/* ══════════════════════════════
           TOP RIBBON
        ══════════════════════════════ */
.top-ribbon {
    background: linear-gradient(90deg, #0a0a0a 0%, #1a1200 50%, #0a0a0a 100%);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 7px 0;
    font-size: 12.5px;
    color: var(--txt2);
    letter-spacing: .03em;
    position: relative;
    overflow: hidden;
}

    .top-ribbon::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .top-ribbon em {
        color: var(--gold);
        font-style: normal;
        font-weight: 600;
    }

/* ══════════════════════════════
           HEADER
        ══════════════════════════════ */
header {
    /*background: linear-gradient(180deg, #080808 0%, #111 100%);*/
    border-bottom: 1px solid var(--border);
    padding: 18px 0 14px;
    /*position: sticky;*/
    top: 0;
    z-index: 200;
    backdrop-filter: blur(12px);
}

.hdr-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

/* nav group */
.hdr-nav {
    display: flex;
    gap: 6px;
    align-items: center;
}

    .hdr-nav.left {
        justify-content: flex-end;
    }

    .hdr-nav.right {
        justify-content: flex-start;
    }

.hdr-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all .22s;
}

.hdr-btn-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(145deg, #1e1e1e, #141414);
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--gold);
    transition: all .22s;
}

.hdr-btn:hover .hdr-btn-icon {
    background: linear-gradient(145deg, #2a2010, #1a1408);
    border-color: var(--gold);
    box-shadow: 0 0 16px var(--gold-glow);
    transform: translateY(-2px);
}

.hdr-btn span {
    font-size: 11px;
    color: var(--txt2);
    transition: color .22s;
}

.hdr-btn:hover span {
    color: var(--gold-light);
}

/* Logo */
.hdr-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.logo-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #2e1f05, #0d0900);
    border: 2px solid var(--gold-dim);
    box-shadow: 0 0 0 4px rgba(201,168,76,.07), 0 0 30px rgba(201,168,76,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--gold-light);
    text-align: center;
    line-height: 1.6;
    transition: box-shadow .3s;
    position: relative;
}

    .logo-ring::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 1px dashed rgba(201,168,76,.2);
        animation: spin 18s linear infinite;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.logo-ring:hover {
    box-shadow: 0 0 0 4px rgba(201,168,76,.12), 0 0 50px rgba(201,168,76,.22);
}

/* Social strip */
.hdr-social {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 12px;
}

.soc-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dim);
    font-size: 14px;
    transition: all .2s;
}

    .soc-btn:hover {
        background: var(--gold);
        color: #000;
        border-color: var(--gold);
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(201,168,76,.3);
    }

/* shared slide text styles */
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,.6);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(6px);
}

.slide-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.slide-sub {
    color: #bbb;
    font-size: 12.5px;
    margin-bottom: 10px;
}

/* ══════════════════════════════
           DUAL SLIDERS
        ══════════════════════════════ */
.hero {
    background: #000;
    padding: 16px 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.dual-slider {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 370px;
    transition: border-color .3s;
}

    .dual-slider:hover {
        border-color: var(--border-hi);
    }

.ds-label {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    background: rgba(0,0,0,.7);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ds-track-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ds-track {
    display: flex;
    height: 100%;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.ds-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.ds-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.dual-slider:hover .ds-bg {
    transform: scale(1.04);
}

.ds-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}

.ds-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 18px 52px;
    z-index: 2;
}

.ds-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201,168,76,.18);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    z-index: 3;
    cursor: pointer;
    transition: all .25s;
    padding-left: 4px;
}

.ds-video-slide:hover .ds-play-btn {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 30px rgba(201,168,76,.4);
    transform: translate(-50%, -50%) scale(1.1);
}

.ds-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,0,0,.65);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

    .ds-arrow:hover {
        background: var(--gold);
        color: #000;
        border-color: var(--gold);
    }

.ds-prev {
    right: 10px;
}

.ds-next {
    left: 10px;
}

.ds-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 20;
}

.ds-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    transition: all .25s;
}

    .ds-dot.active {
        background: var(--gold);
        width: 20px;
        border-radius: 4px;
        box-shadow: 0 0 8px var(--gold-glow);
    }

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .dual-slider {
        height: 240px;
    }
}

/* ══════════════════════════════
           QUICK ACCESS
        ══════════════════════════════ */
.qa-section {
    padding: 44px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

    .qa-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

.qa-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: fadeUp .5s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qa-item:nth-child(1) {
    animation-delay: .05s;
}

.qa-item:nth-child(2) {
    animation-delay: .1s;
}

.qa-item:nth-child(3) {
    animation-delay: .15s;
}

.qa-item:nth-child(4) {
    animation-delay: .2s;
}

.qa-item:nth-child(5) {
    animation-delay: .25s;
}

.qa-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(145deg, #1e1e1e, #141414);
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

    .qa-icon::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, var(--gold-glow), transparent);
        opacity: 0;
        transition: opacity .25s;
    }

.qa-item:hover .qa-icon {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(201,168,76,.2);
}

    .qa-item:hover .qa-icon::after {
        opacity: 1;
    }

.qa-label {
    font-size: 12.5px;
    color: var(--txt2);
    transition: color .2s;
}

.qa-item:hover .qa-label {
    color: var(--gold-light);
}

/* ══════════════════════════════
           SECTION HEADING
        ══════════════════════════════ */
.sec-head {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 20px;
}

.sec-head-bar {
    width: 4px;
    height: 24px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dim));
    box-shadow: 0 0 8px var(--gold-glow);
}

.sec-head-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

/* ══════════════════════════════
           ACTIVITY SECTION
        ══════════════════════════════ */
.act-section {
    padding: 52px 0;
    background: var(--bg);
}

.act-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 400px;
    background: #000;
}

.act-image-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .act-image-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.act-image:hover .act-image-inner img {
    transform: scale(1.02);
}

.act-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 360deg, rgba(0, 0, 0, 1.7), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    z-index: 2;
}

.act-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
    line-height: 1.5;
}

.act-caption {
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.7;
    margin-bottom: 10px;
}

.act-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gold);
    color: #000;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    width: fit-content;
}

    .act-link-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(201, 168, 76, .35);
    }

    .act-link-btn i {
        font-size: 11px;
    }


/* active act-row highlight */
.act-row.active {
    border-color: var(--gold);
    background: #1f1a0d;
}

    .act-row.active .act-row-icon {
        background: var(--gold-dim);
        color: #fff;
    }

    .act-row.active .act-arrow {
        color: var(--gold);
    }

/* Activity list */
.act-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.act-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 11px 16px;
    cursor: pointer;
    transition: all .22s;
    position: relative;
    overflow: hidden;
}

    .act-row::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--gold), transparent);
        opacity: 0;
        transition: opacity .22s;
    }

    .act-row:hover {
        border-color: var(--border-hi);
        background: #1f1a0d;
        transform: translateX(-3px);
    }

        .act-row:hover::before {
            opacity: 1;
        }

.act-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.act-row-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    transition: all .2s;
}

.act-row:hover .act-row-icon {
    background: var(--gold-dim);
    color: #fff;
}

.act-row-title {
    font-size: 13.5px;
    color: #ddd;
}

.act-arrow {
    color: var(--gold-dim);
    font-size: 11px;
    transition: all .2s;
}

.act-row:hover .act-arrow {
    color: var(--gold);
    transform: translateX(-3px);
}

/* ══════════════════════════════
           QARARGAH
        ══════════════════════════════ */
.qar-section {
    padding: 52px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.qar-card {
    background: linear-gradient(145deg, #1c1c1c, #141414);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all .25s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .qar-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        opacity: 0;
        transition: opacity .25s;
    }

    .qar-card:hover {
        border-color: var(--border-hi);
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,.5);
    }

        .qar-card:hover::after {
            opacity: 1;
        }

.qar-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: radial-gradient(circle, #1e1a0a, #111);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
    transition: all .25s;
}

.qar-card:hover .qar-icon {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

.qar-name {
    font-size: 12.5px;
    color: var(--txt2);
}

/* ══════════════════════════════
           DELNEVESHTE
        ══════════════════════════════ */
.del-section {
    padding: 52px 0;
    background: var(--bg);
}

.del-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    cursor: pointer;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

    .del-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        opacity: 0;
        transition: opacity .25s;
    }

    .del-card:hover {
        border-color: var(--border-hi);
        transform: translateY(-4px);
        box-shadow: 0 14px 36px rgba(0,0,0,.45);
    }

        .del-card:hover::before {
            opacity: 1;
        }

.del-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2010, #1a1408);
    border: 1.5px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
}

.del-name {
    font-size: 13.5px;
    font-weight: 600;
}

.del-date {
    font-size: 11.5px;
    color: var(--txt2);
    margin-top: 2px;
}

.del-title {
    font-size: 16px;
    font-weight: 700;
    margin: 12px 0 6px;
}

.del-body {
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.8;
}

.del-likes {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: 13px;
    color: var(--txt2);
}

    .del-likes i {
        color: #e74c3c;
    }

/* ══════════════════════════════
           DELNEVESHTE SLIDER
        ══════════════════════════════ */
.del-section {
    padding: 52px 0;
    background: var(--bg);
}

.del-slider-wrap {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
}

.del-slider-track {
    display: flex;
    gap: 16px;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.del-slide {
    flex-shrink: 0;
    /* width set by JS based on viewport */
}

.del-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    cursor: pointer;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

    .del-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        opacity: 0;
        transition: opacity .25s;
    }

    .del-card:hover {
        border-color: var(--border-hi);
        transform: translateY(-4px);
        box-shadow: 0 14px 36px rgba(0,0,0,.45);
    }

        .del-card:hover::before {
            opacity: 1;
        }

.del-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2010, #1a1408);
    border: 1.5px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.del-name {
    font-size: 13.5px;
    font-weight: 600;
}

.del-date {
    font-size: 11.5px;
    color: var(--txt2);
    margin-top: 2px;
}

.del-title {
    font-size: 16px;
    font-weight: 700;
    margin: 12px 0 6px;
}

.del-body {
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.8;
}

.del-likes {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: 13px;
    color: var(--txt2);
}

    .del-likes i {
        color: #e74c3c;
    }

/* Controls row */
.del-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 4px;
}

.del-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
}

    .del-arrow:hover {
        background: var(--gold);
        color: #000;
        border-color: var(--gold);
    }

/* Dots */
.dot-row {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    transition: all .25s;
    cursor: pointer;
}

    .dot.active {
        background: var(--gold);
        box-shadow: 0 0 8px var(--gold-glow);
        width: 24px;
        border-radius: 4px;
    }

/* ══════════════════════════════
           FOOTER
        ══════════════════════════════ */
footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

.ft-social {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-bottom: 24px;
}

    .ft-social a {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: #141414;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-dim);
        font-size: 15px;
        transition: all .2s;
    }

        .ft-social a:hover {
            background: var(--gold);
            color: #000;
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(201,168,76,.3);
        }

.ft-nav {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

    .ft-nav a {
        font-size: 13px;
        color: var(--txt2);
        transition: color .2s;
    }

        .ft-nav a:hover {
            color: var(--gold);
        }

.ft-divider {
    border-color: var(--border);
    margin: 24px 0;
}

.ft-search {
    max-width: 300px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    transition: border-color .2s;
}

    .ft-search:focus-within {
        border-color: var(--gold);
    }

    .ft-search input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        padding: 10px 16px;
        color: var(--txt);
        font-family: 'Vazirmatn', sans-serif;
        font-size: 13px;
    }

        .ft-search input::placeholder {
            color: #444;
        }

    .ft-search button {
        background: var(--gold);
        border: none;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-size: 14px;
        cursor: pointer;
        flex-shrink: 0;
    }

.ft-logo-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #2e1f05, #0d0900);
    border: 2px solid var(--gold-dim);
    box-shadow: 0 0 24px rgba(201,168,76,.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 10px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 12px;
}

.ft-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ft-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
}

.ft-copy {
    font-size: 11.5px;
    color: #444;
    margin-top: 10px;
}

/* ══════════════════════════════
           PLAYLIST PANEL
        ══════════════════════════════ */
#playlistPanel {
    position: fixed;
    bottom: 72px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0f0f0f, #0a0a0a);
    border-top: 1px solid var(--border);
    z-index: 998;
    max-height: 380px;
    transform: translateY(110%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -12px 40px rgba(0,0,0,.6);
}

    #playlistPanel.open {
        transform: translateY(0);
    }

#plBackdrop {
    position: fixed;
    inset: 0;
    bottom: 72px;
    background: rgba(0,0,0,.45);
    z-index: 997;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

    #plBackdrop.open {
        opacity: 1;
        pointer-events: all;
    }

.pl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 10px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.pl-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .pl-title i {
        color: var(--gold);
    }

.pl-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid var(--border);
    color: var(--txt2);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

    .pl-close:hover {
        background: var(--gold);
        color: #000;
        border-color: var(--gold);
    }

.pl-list {
    overflow-y: auto;
    flex: 1;
    padding: 6px 0;
}

    .pl-list::-webkit-scrollbar {
        width: 4px;
    }

    .pl-list::-webkit-scrollbar-thumb {
        background: var(--gold-dim);
        border-radius: 4px;
    }

.pl-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background .2s;
    position: relative;
}

    .pl-item:hover {
        background: #161616;
    }

    .pl-item.active {
        background: rgba(201,168,76,.07);
    }

        .pl-item.active::before {
            content: '';
            position: absolute;
            right: 0;
            top: 4px;
            bottom: 4px;
            width: 3px;
            background: var(--gold);
            border-radius: 0 3px 3px 0;
        }

.pl-num {
    font-size: 12px;
    color: var(--txt2);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.pl-item.active .pl-num {
    color: var(--gold);
}

.pl-info {
    flex: 1;
    min-width: 0;
}

.pl-track-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--txt);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pl-item.active .pl-track-name {
    color: var(--gold-light);
}

.pl-artist {
    font-size: 11.5px;
    color: var(--txt2);
    margin-top: 2px;
}

.pl-dur {
    font-size: 12px;
    color: var(--txt2);
    flex-shrink: 0;
}

.pl-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .2s;
}

.pl-item.active.playing .pl-wave {
    opacity: 1;
}

.pl-wave span {
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
    display: block;
    animation: wave 1s ease-in-out infinite;
}

    .pl-wave span:nth-child(1) {
        height: 6px;
        animation-delay: 0s;
    }

    .pl-wave span:nth-child(2) {
        height: 12px;
        animation-delay: .15s;
    }

    .pl-wave span:nth-child(3) {
        height: 8px;
        animation-delay: .3s;
    }

    .pl-wave span:nth-child(4) {
        height: 14px;
        animation-delay: .1s;
    }

@keyframes wave {
    0%,100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(.4);
    }
}

.player-list-btn {
    color: #555;
    cursor: pointer;
    font-size: 16px;
    transition: color .2s;
    flex-shrink: 0;
    padding: 6px;
}

    .player-list-btn:hover, .player-list-btn.open {
        color: var(--gold);
    }

.player-info-row {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-bottom: 3px;
}

.player-now-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--txt);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.player-now-artist {
    font-size: 11px;
    color: var(--txt2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

/* ══════════════════════════════
           PLAYER BAR
        ══════════════════════════════ */
.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(0deg, #070707, #0f0f0f);
    border-top: 1px solid var(--border);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(10px);
}

.player-thumb {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2e1f05, #0d0900);
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.player-ctrls {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #888;
    font-size: 18px;
}

    .player-ctrls i {
        cursor: pointer;
        transition: color .2s;
    }

        .player-ctrls i:hover {
            color: var(--gold);
        }

.player-play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(201,168,76,.3);
    transition: transform .2s;
}

    .player-play:hover {
        transform: scale(1.08);
    }

.player-prog {
    flex: 1;
}

.player-times {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #555;
    margin-bottom: 4px;
}

.prog-track {
    height: 4px;
    background: #222;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.prog-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold));
    width: 35%;
    position: relative;
}

    .prog-fill::after {
        content: '';
        position: absolute;
        right: -5px;
        top: -4px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 8px var(--gold-glow);
    }

.player-vol {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 15px;
}

    .player-vol i {
        cursor: pointer;
    }

        .player-vol i:hover {
            color: var(--gold);
        }

body {
    padding-bottom: 72px;
}

/* ══════════════════════════════
           RESPONSIVE
        ══════════════════════════════ */
@media (max-width: 768px) {
    .hdr-btn span {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .slide-card {
        height: 220px;
    }

    .act-image {
        height: 220px;
    }

    .hdr-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .logo-ring {
        width: 72px;
        height: 72px;
    }
}

/*----me----*/

.aTitle {
    text-decoration: none;
    color: white;
}






/*list page*/


/* MAIN */
.archive-section {
    padding: 40px 0 60px;
}

/* ARCHIVE HEADER */
.archive-header {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

    .archive-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,transparent,var(--gold),transparent);
    }

.archive-title {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.archive-subtitle {
    font-size: 14px;
    color: var(--txt2);
    line-height: 1.7;
}

/* ARCHIVE LIST */
.archive-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all .25s;
    cursor: pointer;
}

    .archive-item:hover {
        border-color: var(--border-hi);
        transform: translateX(-6px);
        box-shadow: 0 8px 24px rgba(0,0,0,.4);
    }

    .archive-item::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg,var(--gold),transparent);
        opacity: 0;
        transition: opacity .25s;
    }

    .archive-item:hover::before {
        opacity: 1;
    }

.archive-item {
    position: relative;
}

.archive-thumb {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    flex-shrink: 0;
    order: 2;
}

    .archive-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.75);
        transition: filter .3s;
    }

.archive-item:hover .archive-thumb img {
    filter: brightness(1);
}

.archive-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    order: 1;
}

.archive-cat {
    display: inline-block;
    background: rgba(201,168,76,.12);
    border: 1px solid var(--border-hi);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 8px;
}

.archive-title-item {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 10px;
    transition: color .2s;
}

.archive-item:hover .archive-title-item {
    color: var(--gold-light);
}

.archive-lead {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--txt2);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--txt2);
}

.archive-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .archive-meta-item i {
        color: var(--gold-dim);
    }

/* PAGINATION */
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn, .page-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--txt2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
}

    .page-btn:hover, .page-num:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

    .page-num.active {
        background: linear-gradient(135deg,var(--gold),var(--gold-dim));
        border-color: var(--gold);
        color: #000;
        font-weight: 700;
    }

.page-ellipsis {
    color: var(--txt2);
    font-size: 14px;
    padding: 0 4px;
}

.page-info {
    font-size: 12.5px;
    color: var(--txt2);
    margin: 0 8px;
}

/* PLAYER BAR */
.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(0deg,#070707,#0f0f0f);
    border-top: 1px solid var(--border);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.player-thumb {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg,#2e1f05,#0d0900);
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.player-ctrls {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #888;
    font-size: 18px;
}

    .player-ctrls i {
        cursor: pointer;
        transition: color .2s;
    }

        .player-ctrls i:hover {
            color: var(--gold);
        }

.player-play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--gold),var(--gold-dim));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(201,168,76,.3);
    transition: transform .2s;
}

    .player-play:hover {
        transform: scale(1.08);
    }

.player-prog {
    flex: 1;
}

.player-times {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #555;
    margin-bottom: 4px;
}

.prog-track {
    height: 4px;
    background: #222;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.prog-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg,var(--gold-dim),var(--gold));
    width: 35%;
    position: relative;
}

@media(max-width:991px) {
    .archive-item {
        flex-direction: column;
    }

    .archive-thumb {
        order: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .archive-body {
        order: 1;
    }

    .hdr-btn span {
        display: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.archive-item {
    animation: fadeIn .4s ease both;
}
