@import url('https://v1.fontapi.ir/css/SFProDisplay');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

:root {
    --text-color: rgba(255, 255, 255, 0.95);
    --text-other-color: rgba(255, 255, 255, 0.7);
    --text-desc: rgb(150, 150, 150);
    --accent-red: #E93A57;
    --accent-glow: rgba(233, 58, 87, 0.25);
    --card-bg: rgba(18, 18, 24, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
}

body {
    background: radial-gradient(circle at 50% -10%, #151522 0%, #07070a 65%, #050508 100%) no-repeat fixed;
    background-color: #07070a;
    color: var(--text-color);
    min-height: 100vh;
}

main {
    padding: 170px 10% 0 10%;
    overflow-x: hidden;
}

/* Glassmorphism Highlight Base */
.highlight {
    line-height: normal;
    display: inline-flex;
    position: relative;
    padding: 8px 22px;
    padding-left: 8px;
    border-radius: 40px;
    background: rgba(20, 20, 24, 0.55);
    border: none;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    isolation: isolate;
    will-change: backdrop-filter, transform, opacity;
    overflow: hidden;
    font-size: 19px;
    font-weight: 400;
    vertical-align: middle;
    align-items: center;
    color: var(--text-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 1px;
    background: linear-gradient(149deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0.02) 60%, rgba(255,255,255,0.25) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Section Headings */
.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 35px;
}

.section-heading h1 {
    font-size: 74px;
    letter-spacing: -1.5px;
    font-weight: 600;
    margin-bottom: 12px;
    background-image: linear-gradient(to bottom, #FFFFFF 40%, #9E9E9E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    font-size: 18px;
    color: var(--text-desc);
    line-height: 1.5;
    max-width: 650px;
}

/* =========================================
   HERO / MAIN SECTION
   ========================================= */
.main-sect.hero-exclusive {
    position: relative;
    color: var(--text-color);
    padding: 30px 0 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-exclusive-title {
    font-size: 92px;
    font-weight: 700;
    letter-spacing: -2.5px;
    line-height: 1.05;
    margin-bottom: 22px;
    background: linear-gradient(180deg, #FFFFFF 25%, #BEBEBE 75%, #7C7C7C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 15px 40px rgba(255, 255, 255, 0.12));
}

.hero-subtitle {
    font-size: 21px;
    color: var(--text-desc);
    max-width: 680px;
    line-height: 1.6;
    margin-bottom: 38px;
    font-weight: 400;
}

.hero-action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-btn-main {
    padding: 15px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 35px;
    background: #FFFFFF;
    color: #000000;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.3);
}

.hero-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(255, 255, 255, 0.45);
    background: #f0f0f0;
}

.hero-btn-sub {
    padding: 15px 36px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-sub:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-music-wrapper {
    margin-top: 48px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.music-single-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-music-card {
    width: 100%;
    max-width: 520px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 28px;
    background: rgba(18, 18, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.single-music-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 25px rgba(255, 255, 255, 0.06);
}

.single-music-card .upper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

.cat-cover {
    width: 78px;
    height: 78px;
    min-width: 78px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.single-music-card .info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    flex: 1 1 0%;
    margin-right: 15px;
    text-align: left;
}

.single-music-card .title {
    font-size: 22px;
    font-weight: 600;
    white-space: normal;
    color: #FFFFFF;
    letter-spacing: -0.3px;
}

.single-music-card .executor {
    font-size: 16px;
    color: #b0b0b0;
    white-space: normal;
    font-weight: 400;
}

/* Live Equalizer */
.live-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 22px;
}

.eq-bar {
    width: 4px;
    height: 6px;
    background: #ff5277;
    border-radius: 2px;
    transition: height 0.2s ease;
}

.is-playing .eq-bar:nth-child(1) { animation: eqBounce 0.8s ease-in-out infinite alternate; }
.is-playing .eq-bar:nth-child(2) { animation: eqBounce 1.1s ease-in-out infinite 0.2s alternate; }
.is-playing .eq-bar:nth-child(3) { animation: eqBounce 0.7s ease-in-out infinite 0.4s alternate; }
.is-playing .eq-bar:nth-child(4) { animation: eqBounce 0.9s ease-in-out infinite 0.1s alternate; }

@keyframes eqBounce {
    0% { height: 4px; }
    100% { height: 20px; }
}

.middle {
    display: flex;
    align-items: center;
    gap: 2px;
    width: 100%;
    margin-top: 8px;
}

.middle span {
    font-size: 15px;
    color: #aaa;
    min-width: 40px;
    text-align: center;
}

.progress-bar {
    position: relative;
    flex: 1 1 0%;
    height: 6px;
    min-width: 180px;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 3px;
}

.line-all {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    height: 100%;
    width: 100%;
}

.line-done {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    background: #FFF;
    border-radius: 3px;
    height: 100%;
    width: 0%;
    z-index: 1;
    transition: width 0.1s linear;
}

.down.player-controls-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
}

.down.player-controls-centered .control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.down.player-controls-centered img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
}

.down.player-controls-centered img:hover {
    transform: scale(1.15);
}

/* =========================================
   ПРЕИМУЩЕСТВО ЧИТ КЛИЕНТА & МОДЫ (2x2 GRID)
   ========================================= */
.features-section,
.mods-custom-section {
    padding: 70px 0 100px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.custom-mods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 10px auto 0 auto;
    width: 100%;
}

.custom-mod-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 26px;
    border-radius: 24px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    cursor: pointer;
    width: 100%;
    position: static;
    box-sizing: border-box;
    background: rgba(18, 18, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-mod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.08);
    background: rgba(28, 28, 36, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
}

.mod-icon-wrapper {
    width: 76px;
    height: 76px;
    min-width: 76px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mod-icon-wrapper.feature-icon-box {
    background: rgba(114, 42, 190, 0.18);
    border: 1px solid rgba(140, 70, 240, 0.35);
    color: #c494ff;
    font-size: 34px;
    box-shadow: 0 0 15px rgba(114, 42, 190, 0.2);
    transition: all 0.3s ease;
}

.custom-mod-card:hover .feature-icon-box {
    background: rgba(114, 42, 190, 0.3);
    border-color: rgba(160, 90, 255, 0.55);
    color: #e2caff;
    box-shadow: 0 0 25px rgba(140, 70, 240, 0.4);
    transform: scale(1.05);
}

.mod-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.custom-mod-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.mod-title {
    font-size: 23px;
    font-weight: 600;
    color: #FFFFFF;
}

.mod-description {
    font-size: 15px;
    color: var(--text-desc);
    line-height: 1.45;
    font-weight: 300;
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 70px 0 110px 0;
}

.video-text {
    margin-bottom: 35px;
}

.video-wrapper {
    width: 100%;
    max-width: 860px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.video-wrapper iframe {
    width: 100%;
    max-width: 860px;
    height: 484px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

/* =========================================
   ANIMATIONS & SCROLL OBSERVER
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll iframe {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-visible iframe {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}
