/* ========================================
   WeezyPro Stories - Public CSS
   Instagram-like Story Interface
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111;
    --bg-card: #1a1a1a;
    --accent: #d4af37;
    --accent2: #f1c40f;
    --text-primary: #f5f5f5;
    --text-secondary: #aaa;
    --border: rgba(255, 255, 255, 0.08);
    --radius-lg: 24px;
    --font: 'Cairo', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i {
    font-size: 1.6rem;
}

.admin-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.admin-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    color: #f1c40f;
}

/* Floating Admin Button at Bottom */
.admin-floating-btn {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    white-space: nowrap;
}

.admin-floating-btn:hover {
    background: var(--accent);
    color: #000;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.admin-floating-btn i {
    font-size: 1rem;
}

/* ---- Stories Section (Moved to Bottom Bar) ---- */
#storiesUXWrapper .bottom-stories-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    /* Completely hidden initially */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding-bottom: env(safe-area-inset-bottom);
}

#storiesUXWrapper.expanded .bottom-stories-bar {
    transform: translateY(0);
}

.bar-toggle {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 50%, #d4af37 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.05);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.8s ease;
    opacity: 0;
    pointer-events: none;
}

.bar-toggle.visible {
    opacity: 1;
    pointer-events: all;
}

.bar-toggle:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6), 0 0 0 5px rgba(255, 255, 255, 0.1);
}

#storiesUXWrapper.expanded .bar-toggle {
    bottom: 155px;
    /* Position it above the expanded bar - adjust as needed based on bar height */
    position: fixed;
    /* Keep it fixed relative to viewport for consistent positioning */
    background: #1a1a1a;
    border: 1px solid #d4af37;
    width: 38px;
    height: 38px;
    color: #d4af37;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

#storiesUXWrapper.expanded .bar-toggle i {
    transform: rotate(180deg);
}

.stories-section {
    padding: 1rem 0;
    background: transparent;
    border-bottom: none;
}

.stories-container {
    max-width: 600px;
    /* Limit width to roughly 5 stories-ish */
    margin: 0 auto;
    padding: 0.5rem 1rem;
}

.stories-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    /* Hide scrollbar for a cleaner look */
    justify-content: flex-start;
    -ms-overflow-style: none;
}

.stories-row::-webkit-scrollbar {
    display: none;
}

.stories-row::-webkit-scrollbar-track {
    background: transparent;
}

.stories-row::-webkit-scrollbar-thumb {
    background: rgba(131, 58, 180, 0.5);
    border-radius: 4px;
}

/* ---- Story Wrapper ---- */
.story-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    flex-shrink: 0;
    animation: fadeInUp 0.4s ease both;
}

.story-wrapper:hover .story-ring {
    transform: scale(1.08);
}

.story-wrapper:hover .story-label {
    color: #fff !important;
}

/* ---- Story Ring (strictly circular) ---- */
.story-ring {
    padding: 3px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #d4af37 0%, #f1c40f 45%, #ffffff 50%, #f1c40f 55%, #d4af37 100%);
    background-size: 200% 200%;
    animation: goldShimmer 3s linear infinite;
    border-radius: 50% !important;
}

@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.story-avatar {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border-radius: 50% !important;
    overflow: hidden;
}

.story-emoji {
    font-size: 2rem;
    line-height: 1;
}

.story-fa-icon {
    font-size: 1.8rem;
    color: #fff;
}

.story-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-initials {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.story-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    max-width: 80px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition);
}

/* Empty state */
.no-stories {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem;
    color: var(--text-secondary);
    text-align: center;
}

.no-stories i {
    font-size: 3rem;
    opacity: 0.4;
}

.no-stories a {
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
}

/* ---- Hero Section ---- */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #f1c40f;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #d4af37, #f1c40f, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(131, 58, 180, 0.6);
}

/* Phone mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-story {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.s1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.s2 {
    bottom: 20%;
    right: 5%;
    animation-delay: 1s;
}

.s3 {
    top: 30%;
    left: 5%;
    animation-delay: 2s;
}

.phone-mockup {
    width: 240px;
    height: 480px;
    border-radius: 36px;
    background: #1a1a1a;
    border: 3px solid #333;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px #222;
    overflow: hidden;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f0f0f, #1a1a1a);
    padding: 1rem 0.8rem;
}

.phone-stories {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    overflow: hidden;
}

.mini-story {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
}

.phone-content-preview {
    padding: 1rem 0;
}

.phone-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.phone-bar.short {
    width: 60%;
}

/* ---- Story Viewer Modal ---- */
.story-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.story-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 100%;
    max-height: 780px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-modal.active .modal-container {
    transform: scale(1);
}

/* Progress bars */
.progress-container {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: none;
    border-radius: 2px;
}

.progress-fill.done {
    width: 100%;
}

.progress-fill.animating {
    transition: width linear;
}

/* Viewer header */
.viewer-header {
    position: absolute;
    top: 30px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.viewer-user {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.viewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
    background: linear-gradient(45deg, #d4af37, #f1c40f, #d4af37);
    position: relative;
}

.viewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.viewer-info {
    display: flex;
    flex-direction: column;
}

.viewer-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.viewer-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.close-btn {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Media area with Blur Effect */
.media-area {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Blur Layer */
.media-area::before {
    content: "";
    position: absolute;
    inset: -20px;
    background-image: var(--bg-media);
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.5);
    z-index: 1;
}

.media-area img,
.media-area video {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 2;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Tap zones */
.tap-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
    z-index: 5;
    cursor: pointer;
}

.tap-prev {
    left: 0;
}

.tap-next {
    right: 0;
}

/* Media loader */
.media-loader {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.loader-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* --- Viewer Footer (Instagram Ad style) --- */
.viewer-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    pointer-events: none;
}

.viewer-footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.caption-area {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
    max-width: 95%;
    text-align: center;
}

.whatsapp-cta {
    background: #fff !important;
    color: #1a1a1a !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
    width: fit-content;
    text-transform: uppercase;
    animation: slideUp 0.5s ease backwards;
}

.whatsapp-cta:hover {
    transform: scale(1.05);
    background: #f0f0f0 !important;
}

.whatsapp-cta i {
    color: #25d366;
    font-size: 1.3rem;
}

/* Ad Label & Reactions at the very bottom */
.viewer-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: auto;
}

.ad-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.viewer-reactions {
    display: flex;
    gap: 20px;
    color: #fff;
    font-size: 1.3rem;
}

.viewer-reactions i {
    cursor: pointer;
    opacity: 0.9;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.viewer-reactions i:active {
    transform: scale(0.9);
}

.viewer-reactions i.active-heart {
    color: #ff3040;
    font-weight: 900;
    transform: scale(1.2);
}

.viewer-reactions i:hover {
    transform: scale(1.2);
    opacity: 1;
}

.whatsapp-cta i {
    font-size: 1.4rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.nav-prev {
    right: 12px;
}

.nav-next {
    left: 12px;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(5deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Stagger story animations */
.story-wrapper:nth-child(1) {
    animation-delay: 0.05s;
}

.story-wrapper:nth-child(2) {
    animation-delay: 0.10s;
}

.story-wrapper:nth-child(3) {
    animation-delay: 0.15s;
}

.story-wrapper:nth-child(4) {
    animation-delay: 0.20s;
}

.story-wrapper:nth-child(5) {
    animation-delay: 0.25s;
}

.story-wrapper:nth-child(6) {
    animation-delay: 0.30s;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        display: none;
    }

    .header-inner {
        padding: 0.8rem 1rem;
    }

    .stories-container {
        padding: 1rem;
    }

    .modal-container {
        border-radius: 0;
        max-height: 100%;
    }
}

/* Viewed Story State */
.story-wrapper.viewed .story-ring {
    background: #444 !important;
    /* Dimmed gray ring */
    padding: 2px;
}

.story-wrapper.viewed .story-avatar {
    border: 2px solid #000;
}

.story-wrapper.viewed .story-label {
    opacity: 0.6;
    font-weight: normal;
}

.share-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-modal.active {
    display: flex;
    opacity: 1;
}

.share-modal-container {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    direction: rtl;
}

.share-modal.active .share-modal-container {
    transform: translateY(0);
}

.share-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.share-modal-close:hover {
    opacity: 1;
}

.share-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.share-modal-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.share-modal-header p {
    margin: 0;
    color: #999;
    font-size: 0.85rem;
}

.share-input-group {
    display: flex;
    background: #252525;
    border-radius: 12px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

#shareLinkInput {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    padding: 10px 15px;
    font-size: 0.85rem;
    outline: none;
    font-family: monospace;
}

#copyShareBtn {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0 15px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

#copyShareBtn:hover {
    background: #e0e0e0;
}

#copyShareBtn:active {
    transform: scale(0.95);
}

.share-success-msg {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #25d366;
    font-size: 0.85rem;
    font-weight: 600;
}

.share-success-msg.visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: none;
    cursor: pointer;
}

.social-btn i {
    font-size: 1.5rem;
}

.social-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.social-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
}

.social-btn.telegram {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.social-btn.telegram:hover {
    background: rgba(0, 136, 204, 0.2);
}

.social-btn.native {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.social-btn.native:hover {
    background: rgba(255, 255, 255, 0.1);
}