/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.1s;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    background: #f1f5f9;
    color: var(--color-text-main);
    border: 1px solid #e2e8f0;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.btn-upgrade {
    background: white; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 8px 16px;
    width: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: none;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.card-actions {
    display: flex;
    gap: 5px;
    padding: 8px;
    background: white;
}
.btn-card {
    flex: 1;
    padding: 6px;
    font-size: 0.8rem;
    border-radius: 6px;
    border: 1px solid #eee;
    background: #fff;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}
.btn-card.chat {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.input-field {
    width: 100%;
    padding: 12px;
    background: var(--color-bg-input);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
}
.filter-bar {
    padding: 0 10px;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-select {
    appearance: none; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    -webkit-appearance: none;
    padding: 8px 30px 8px 15px; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    border-radius: 20px;
    border: 1px solid #ddd;
    background-color: white;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    font-weight: 500;
    /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 10px auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.filter-select:hover {
    border-color: #bbb;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.card {
    position: relative;
    background: #fff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.card-img-container {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.card-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.card-blur { filter: blur(8px); } /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */

.card-info-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 10px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.status-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--color-premium);
    border-radius: 50%;
    margin-right: 4px;
    box-shadow: 0 0 5px rgba(0,200,83,0.8);
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.notif-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    background: white;
    position: relative;
    cursor: pointer;
}
.notif-blur-overlay {
    filter: blur(5px);
    user-select: none;
    pointer-events: none; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
}
.notif-badge-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 15px;
}
.bg-like { background: #FFEBEE; color: #F44336; }
.bg-view { background: #E3F2FD; color: #2196F3; }

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.chat-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100dvh;
    background: white; z-index: 1500;
    display: flex; flex-direction: column;
}

.chat-msgs { flex: 1; padding: 15px; overflow-y: auto; background: #F8F9FA; display: flex; flex-direction: column; gap: 8px; }

.msg {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.4;
}
.msg-in { background: white; border: 1px solid #eee; align-self: flex-start; border-bottom-left-radius: 4px; }
.msg-out { background: var(--color-primary); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }

.paywall-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
    z-index: 10;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.modal-confirm {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 85%; max-width: 320px;
    background: white; padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-float);
    text-align: center;
    z-index: var(--z-modal);
}
.overlay-bg {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 1900;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.photo-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.98);
    z-index: 3000;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 20px; text-align: center;
}
.loader-spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(233, 30, 99, 0.1);
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.settings-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.settings-item {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: background 0.1s;
}
.settings-item:last-child { border-bottom: none; }
.settings-item:hover { background: #f8fafc; }

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}
.slider:before {
    position: absolute; content: "";
    height: 18px; width: 18px;
    left: 3px; bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider { background-color: var(--color-primary); }
input:checked + .slider:before { transform: translateX(20px); }

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.feed-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.feed-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}

.feed-header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
}

.feed-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 1px solid #eee;
}

.feed-user-info {
    line-height: 1.2;
}

.feed-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
}

.feed-meta {
    font-size: 0.75rem;
    color: #888;
}

.feed-main-img {
    width: 100%;
    /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    aspect-ratio: 4/5; 
    object-fit: cover;
    display: block;
}

.feed-footer {
    padding: 12px 15px;
}

.feed-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 8px;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    transition: transform 0.1s;
}
.action-btn:active { transform: scale(1.2); }

.feed-stats {
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.liked .material-icons-round {
    color: var(--color-primary);
    animation: pulse 0.3s ease-in-out;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.gold-banner {
    width: calc(100% + 40px); /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    margin-left: -20px;      /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    margin-right: -20px;     /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    background: linear-gradient(90deg, #FFC107, #FF9800, #FFC107);
    background-size: 200% 100%;
    color: #fff;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    animation: shimmer 3s infinite linear;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    border: none;
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.footer-reviews {
    margin: 25px auto;
    padding: 20px;
    background: white;
    /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4), inset 0 0 10px rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    max-width: 90%; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.upgrade-slideup {
    position: fixed;
    bottom: -150px; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100px;
    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 2500;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--color-primary);
}

.upgrade-slideup.visible {
    bottom: 0;
}

.slideup-content {
    flex: 1;
    margin-right: 15px;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}

.slideup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    color: #999;
    font-size: 1.2rem;
    padding: 5px;
}

.slideup-btn {
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.gold-banner-header {
    width: 100%; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    margin: 0;
    padding: 8px 15px; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    background: linear-gradient(90deg, #FFC107, #FF9800, #FFC107);
    background-size: 200% 100%;
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    animation: shimmer 3s infinite linear;
    letter-spacing: 1px;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.header-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    background: var(--color-primary); /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
}
.header-tabs .tab-pill {
    padding: 4px 14px; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    font-size: 0.8rem;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
}
.header-tabs .tab-pill.active {
    background: white;
    color: var(--color-primary);
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.header-filters {
    background: #f8fafc;
    padding: 8px 15px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.header-filters .filter-select {
    padding: 4px 25px 4px 10px; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    font-size: 0.8rem;
    height: 30px;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.fab-container {
    position: fixed;
    bottom: 80px; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1400;
}

.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}
.fab-btn:active { transform: scale(0.9); }
.fab-btn.primary { background: var(--color-primary); color: white; }

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.create-post-widget {
    background: white;
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}
.create-post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.create-post-input {
    width: 100%;
    border: none;
    background: #f1f5f9;
    padding: 12px;
    border-radius: 12px;
    resize: none;
    font-family: inherit;
    font-size: 0.95rem;
}
.create-post-input:focus { outline: 1px solid var(--color-primary); }

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.upgrade-slideup {
    position: fixed;
    bottom: -100%; /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    left: 0;
    width: 100%;
    z-index: 2500;
    
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px); /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    
    padding: 20px 25px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    
    display: flex;
    flex-direction: column;
    gap: 15px;
    
    transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.upgrade-slideup.visible {
    bottom: 0;
}

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
.slideup-body {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.slideup-icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FFC107, #FF9800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.slideup-text {
    flex: 1;
}

.slideup-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.2;
}

.slideup-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 8px;
}

.slideup-support {
    font-size: 0.75rem;
    color: #94a3b8;
}

.slideup-support a {
    color: var(--color-primary);
    text-decoration: none;
}

.slideup-btn-container {
    width: 100%;
}

.slideup-btn {
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    cursor: pointer;
    transition: transform 0.1s;
}
.slideup-btn:active { transform: scale(0.98); }

.slideup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    font-size: 1.2rem;
    border: none;
    transition: background 0.2s;
}
.slideup-close:hover { background: #e2e8f0; color: #333; }

/* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
@media (min-width: 768px) {
    .upgrade-slideup {
        width: auto;
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 24px;
        flex-direction: row;
        align-items: center;
        padding: 20px;
        /* It is owned by QuickSpark.club. Copying of the technology is prohibited. */
    }
    
    .upgrade-slideup.visible {
        bottom: 30px;
    }

    .slideup-btn-container {
        width: auto;
        min-width: 140px;
    }
    
    .slideup-close {
        top: -10px;
        right: -10px;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
}