:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-soft: rgba(99, 102, 241, 0.12);
    --accent-green: #10b981;
    --bg-dark: #0b0c10;
    --card-bg: #13151c;
    --card-border: #1e222d;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Background Ambient Glow */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.1;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #6366f1;
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -200px;
    left: -100px;
}

/* Header Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-btn {
    background: var(--card-bg);
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--card-border);
    color: var(--text-main) !important;
}

/* Main Container */
.ps-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem 1.2rem 4rem;
}

/* App Header Section */
.ps-app-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.ps-app-icon img {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
}

.ps-app-meta {
    flex: 1;
}

.ps-app-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.ps-app-dev {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.ps-app-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ps-tag {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Minimal Stats Row */
.ps-stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1rem 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.ps-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.ps-stat-val {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
}

.ps-mini-stars {
    color: #fbbf24;
    font-size: 0.7rem;
}

.ps-stat-icon {
    font-size: 1rem;
    color: var(--primary);
}

.ps-stat-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ps-stat-divider {
    width: 1px;
    height: 28px;
    background: var(--card-border);
}

/* Action Buttons */
.ps-download-row {
    display: flex;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.ps-download-btn {
    flex: 1;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.98rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.ps-download-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.ps-tg-btn {
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--card-border);
    transition: background 0.2s ease;
}

.ps-tg-btn:hover {
    background: #1a1d27;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.phone-mockup {
    width: 250px;
    height: 500px;
    background: #181b24;
    border-radius: 32px;
    padding: 8px;
    border: 4px solid #252a37;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    overflow: hidden;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Section Header */
.ps-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.ps-section-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

/* Professional About & Features Section */
.about-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.about-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #0b0c10;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
}

.feature-info p {
    font-size: 0.76rem;
    color: var(--text-dim);
}

/* High-Quality Screenshots Gallery */
.ps-screenshots {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-card {
    aspect-ratio: 9/16;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #181b24;
    border: 1px solid var(--card-border);
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.gallery-card img, .gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Professional Ratings & Reviews */
.ps-reviews {
    margin-bottom: 3rem;
}

.ps-rating-summary {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    margin-bottom: 1.8rem;
    align-items: center;
}

.ps-big-score {
    text-align: center;
    border-right: 1px solid var(--card-border);
    padding-right: 1.5rem;
}

.ps-score-num {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.ps-score-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin: 6px 0;
}

.ps-score-sub {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.ps-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ps-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.ps-bar-row span {
    width: 12px;
    text-align: right;
    font-weight: 500;
}

.ps-bar-track {
    flex: 1;
    height: 7px;
    background: #0b0c10;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.ps-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}

.ps-bar-pct {
    font-size: 0.75rem;
    color: var(--text-dim);
    width: 32px;
}

/* Write Review Form */
.ps-write-review {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    margin-bottom: 1.8rem;
}

.ps-review-header {
    margin-bottom: 1rem;
}

.ps-review-prompt {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.ps-review-sub {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.ps-star-section {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0b0c10;
    border: 1px solid var(--card-border);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.ps-star-row {
    display: flex;
    gap: 4px;
    font-size: 1.2rem;
    color: #fbbf24;
    cursor: pointer;
}

.ps-star-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.ps-input-wrap {
    margin-bottom: 0.8rem;
}

.ps-input, .ps-textarea {
    width: 100%;
    background: #0b0c10;
    border: 1px solid var(--card-border);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.ps-input:focus, .ps-textarea:focus {
    border-color: var(--primary);
}

.ps-textarea {
    min-height: 80px;
    resize: vertical;
}

.ps-submit-btn {
    width: 100%;
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 11px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ps-submit-btn:hover {
    background: var(--primary-hover);
}

/* Reviews List */
.ps-review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    margin-bottom: 0.8rem;
}

.ps-rc-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.6rem;
}

.ps-rc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.ps-rc-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
}

.ps-rc-stars {
    color: #fbbf24;
    margin-left: auto;
    font-size: 0.8rem;
}

.ps-rc-text {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.ps-helpful-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-dim);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ps-helpful-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.ps-helpful-btn.ps-liked {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
}

/* User's Own Review - highlighted card */
.ps-my-review-card {
    border: 1.5px solid rgba(99, 102, 241, 0.6) !important;
    background: linear-gradient(135deg, rgba(99,102,241,0.07), rgba(139,92,246,0.05)) !important;
    box-shadow: 0 0 14px rgba(99, 102, 241, 0.15);
    position: relative;
}

.ps-my-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #a5b4fc;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 50px;
    padding: 3px 10px;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.ps-edit-inline-btn {
    font-size: 0.76rem;
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 50px;
    padding: 4px 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.ps-edit-inline-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #c4b5fd;
}

/* Footer */
footer {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.82rem;
    padding: 24px 0 10px;
    border-top: 1px solid var(--card-border);
}

/* Sticky Mobile Bar */
.ps-sticky-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(19, 21, 28, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--card-border);
    padding: 10px 16px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.3s ease;
}

.ps-sticky-bar.active { bottom: 0; }

.ps-sticky-info { display: flex; align-items: center; gap: 10px; }

.ps-sticky-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
}

.ps-sticky-text h4 { font-size: 0.88rem; font-weight: 600; color: white; }
.ps-sticky-text p { font-size: 0.72rem; color: var(--text-muted); }

.ps-sticky-dl-btn {
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
}

/* Comprehensive Mobile Responsiveness */
@media (max-width: 768px) {
    nav {
        padding: 1rem 4%;
    }
    .nav-links {
        gap: 1rem;
    }
    .ps-main {
        padding: 1.2rem 1rem 5rem;
    }
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}

@media (max-width: 580px) {
    /* Hide text nav links on mobile to prevent navbar overflow */
    .nav-links a:not(.nav-btn) {
        display: none;
    }
    .nav-btn {
        padding: 0.45rem 0.95rem;
        font-size: 0.82rem;
    }

    /* App Header Adjustments */
    .ps-app-header {
        align-items: flex-start;
        gap: 1rem;
    }
    .ps-app-icon img {
        width: 72px;
        height: 72px;
        border-radius: 16px;
    }
    .ps-app-name {
        font-size: 1.4rem;
    }
    .ps-app-dev {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    .ps-tag {
        padding: 3px 8px;
        font-size: 0.72rem;
    }

    /* Stats Row - Compact 4-column layout */
    .ps-stats-row {
        padding: 0.85rem 0.2rem;
        gap: 2px;
    }
    .ps-stat-val {
        font-size: 0.95rem;
    }
    .ps-mini-stars {
        font-size: 0.6rem;
    }
    .ps-stat-icon {
        font-size: 0.85rem;
    }
    .ps-stat-label {
        font-size: 0.64rem;
        letter-spacing: 0;
    }
    .ps-stat-divider {
        height: 22px;
    }

    /* Download Buttons */
    .ps-download-row {
        flex-direction: column;
        gap: 10px;
    }
    .ps-download-btn, .ps-tg-btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
        font-size: 0.92rem;
    }

    /* Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    /* App Screenshots - Play Store Style Horizontal Touch Carousel */
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .gallery-grid::-webkit-scrollbar {
        display: none;
    }
    .gallery-card {
        flex: 0 0 68%;
        scroll-snap-align: start;
    }

    /* Ratings Summary */
    .ps-rating-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.2rem;
    }
    .ps-big-score {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--card-border);
        padding-bottom: 1rem;
    }
    .ps-score-num {
        font-size: 2.5rem;
    }

    /* Review Form */
    .ps-write-review {
        padding: 1.1rem;
    }
    .ps-star-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

@media (max-width: 380px) {
    .ps-stat-val {
        font-size: 0.85rem;
    }
    .ps-stat-label {
        font-size: 0.58rem;
    }
    .gallery-card {
        flex: 0 0 82%;
    }
}

/* ===== REVIEW FILTER & SORT CONTROLS ===== */
.ps-review-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
}

.ps-filter-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ps-filter-btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.05);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.ps-filter-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
    background: rgba(99,102,241,0.08);
}
.ps-filter-btn.active {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}

.ps-sort-wrap select.ps-sort-select {
    padding: 7px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.ps-sort-wrap select.ps-sort-select:hover,
.ps-sort-wrap select.ps-sort-select:focus {
    border-color: #6366f1;
    color: #fff;
}
.ps-sort-wrap select.ps-sort-select option {
    background: #1a1c2a;
    color: #fff;
}

/* ===== NO REVIEWS STATE ===== */
.ps-no-reviews {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255,255,255,0.35);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* ===== PAGINATION ===== */
.ps-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 10px;
}

.ps-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.ps-page-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
    background: rgba(99,102,241,0.08);
}
.ps-page-btn.ps-page-active {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}
.ps-page-btn.ps-page-prev,
.ps-page-btn.ps-page-next {
    font-size: 0.8rem;
    padding: 0 16px;
}
.ps-page-ellipsis {
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
    line-height: 38px;
    padding: 0 4px;
}

/* ===== FOOTER PAGES LINKS ===== */
footer .footer-pages-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-bottom: 12px;
}
footer .footer-pages-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.83rem;
    text-decoration: none;
    transition: color 0.2s;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
}
footer .footer-pages-links a:hover {
    color: #6366f1;
    border-bottom-color: rgba(99,102,241,0.4);
}

@media (max-width: 600px) {
    .ps-review-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .ps-filter-btns {
        gap: 6px;
    }
    .ps-filter-btn {
        padding: 5px 10px;
        font-size: 0.78rem;
    }
}

/* ===== GOOGLE LOGIN & USER PROFILE STYLES ===== */
.ps-google-login-prompt {
    text-align: center;
    padding: 28px 20px;
}
.ps-gl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 12px;
}
.ps-google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background: #ffffff;
    color: #1f1f1f;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}
.ps-google-btn:hover {
    background: #f1f3f4;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    color: #000;
}

.ps-user-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    margin-bottom: 20px;
}
.ps-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ps-user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #6366f1;
}
.ps-user-avatar-initial {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ps-user-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ps-verified-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16,185,129,0.15);
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(16,185,129,0.3);
}
.ps-user-email {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}
.ps-logout-btn {
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(255,62,109,0.12);
    border: 1px solid rgba(255,62,109,0.3);
    color: #ff3e6d;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.ps-logout-btn:hover {
    background: rgba(255,62,109,0.25);
    color: #ff5c84;
}

.ps-rc-avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.2);
}

.ps-delete-btn {
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(255,62,109,0.15);
    border: 1px solid rgba(255,62,109,0.3);
    color: #ff3e6d;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
.ps-delete-btn:hover {
    background: rgba(255,62,109,0.3);
    color: #ff5c84;
}
