/* ========== repost.css ========== */

.repost-hero {
    position: relative;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}
.repost-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 30%, rgba(255,140,0,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(244,60,118,0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(66,33,112,0.2) 0%, transparent 50%);
    z-index: 0;
}
.repost-hero-content {
    position: relative;
    z-index: 1;
}
.repost-logo {
    width: 140px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 30px rgba(255,140,0,0.5));
}
.repost-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(255,140,0,0.4);
}
.repost-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: #aabbcc;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.repost-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.repost-stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f43c76;
    display: block;
    text-shadow: 0 0 20px rgba(244,60,118,0.5);
}
.repost-stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #664477;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Секции */
.repost-section {
    padding: 50px 60px;
    border-top: 1px solid rgba(244,60,118,0.08);
}
.repost-subsection {
    margin-bottom: 30px;
}
.repost-subsection-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #bb99dd;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Стикеры */
.repost-stickers-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.repost-sticker-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(12,7,28,0.6);
    border: 1px solid rgba(244,60,118,0.15);
    text-decoration: none;
    transition: all 0.3s;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.repost-sticker-card:hover {
    border-color: #f43c76;
    background: rgba(244,60,118,0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244,60,118,0.2);
}
.repost-sticker-icon {
    font-size: 1.5rem;
}
.repost-sticker-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #fff;
    letter-spacing: 1px;
}

/* Сетка ссылок */
.repost-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.repost-link-card {
    display: block;
    padding: 10px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: #9977aa;
    text-decoration: none;
    background: rgba(12,7,28,0.4);
    border: 1px solid rgba(244,60,118,0.06);
    transition: all 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.repost-link-card:hover {
    border-color: #f43c76;
    color: #fff;
    background: rgba(244,60,118,0.08);
}

@media (max-width: 1000px) {
    .repost-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .repost-hero {
        padding: 50px 20px;
    }
    .repost-title {
        font-size: 2.5rem;
    }
    .repost-hero-stats {
        gap: 25px;
    }
    .repost-stat-num {
        font-size: 1.8rem;
    }
    .repost-section {
        padding: 35px 20px;
    }
    .repost-links-grid {
        grid-template-columns: 1fr;
    }
}