* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
}

.app-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.phone-frame {
    width: 390px;
    height: 844px;
    background: #000;
    border-radius: 50px;
    padding: 12px;
    box-shadow: 
        0 0 0 2px #2a2a3a,
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(100, 150, 255, 0.1);
    position: relative;
    flex-shrink: 0;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 100;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #6b8cff 0%, #8b7cff 30%, #a78bfa 60%, #c084fc 100%);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.status-icons {
    display: flex;
    gap: 6px;
    font-size: 12px;
}

/* Top Nav */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px 12px;
    flex-shrink: 0;
}

.nav-tabs {
    display: flex;
    gap: 24px;
}

.nav-tab {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-tab.active {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.star-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 10px 20px 20px;
    flex-shrink: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.bubble-1 {
    width: 200px;
    height: 200px;
    top: -40px;
    left: -60px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
}

.bubble-2 {
    width: 120px;
    height: 120px;
    top: 20px;
    right: -20px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 70%);
}

.bubble-3 {
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
}

.bubble-4 {
    width: 40px;
    height: 40px;
    top: 60px;
    right: 80px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 70%);
}

.star {
    position: absolute;
    color: white;
    font-size: 16px;
    opacity: 0.9;
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 {
    top: 15px;
    left: 45%;
    font-size: 20px;
    animation-delay: 0s;
}

.star-2 {
    top: 40px;
    right: 30%;
    font-size: 14px;
    animation-delay: 0.5s;
}

.star-3 {
    bottom: 40px;
    left: 10%;
    font-size: 28px;
    animation-delay: 1s;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.ring-1 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
    border-color: rgba(255, 255, 255, 0.15);
}

.ring-2 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    right: -30px;
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 140px;
}

.hero-title {
    font-size: 38px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    font-weight: 400;
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    color: white;
    font-weight: 600;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px #22c55e; }
    50% { opacity: 0.7; box-shadow: 0 0 12px #22c55e; }
}

.online-count {
    font-size: 18px;
    font-weight: 700;
}

.online-text {
    font-size: 14px;
    opacity: 0.9;
}

/* Floating Avatars */
.floating-avatars {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 180px;
    height: 200px;
    z-index: 3;
}

.avatar-item {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar-item .distance {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b7cff, #a78bfa);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 600;
}

.avatar-1 {
    width: 64px;
    height: 64px;
    top: 5px;
    right: 70px;
}

.avatar-2 {
    width: 72px;
    height: 72px;
    top: 0;
    right: 0;
}

.avatar-3 {
    width: 60px;
    height: 60px;
    top: 70px;
    right: 110px;
}

.avatar-4 {
    width: 68px;
    height: 68px;
    top: 65px;
    right: 30px;
}

.avatar-5 {
    width: 66px;
    height: 66px;
    top: 130px;
    right: 5px;
}

.avatar-6 {
    width: 56px;
    height: 56px;
    top: 135px;
    right: 85px;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 10px;
    padding: 0 20px 14px;
    flex-shrink: 0;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 100px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn.active {
    background: white;
    color: #6b5ce7;
    font-weight: 600;
}

.filter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.filter-dot.green {
    background: #22c55e;
}

.filter-btn.active .filter-dot.green {
    background: #22c55e;
}

/* VIP Tag */
.vip-tag {
    position: absolute;
    right: 8px;
    top: 340px;
    background: linear-gradient(180deg, #ffb347 0%, #ff8c42 100%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 8px;
    border-radius: 0 0 12px 12px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
    z-index: 10;
}

.vip-tag::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    height: 8px;
    background: #ffb347;
    border-radius: 4px 4px 0 0;
}

/* User Grid */
.user-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    padding: 0 16px;
    flex: 1;
    min-height: 0;
}

.user-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ddd;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.user-card:active {
    transform: scale(0.98);
}

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

.card-large {
    grid-row: span 2;
}

.card-top-right {
    grid-column: 2;
    grid-row: 1;
}

.card-bottom-right {
    grid-column: 2;
    grid-row: 2;
}

.card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.3;
    z-index: 2;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 14px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: white;
    z-index: 2;
}

.card-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.card-name {
    font-size: 16px;
    font-weight: 600;
}

.card-large .card-name {
    font-size: 18px;
}

.card-age {
    font-size: 14px;
    opacity: 0.9;
}

.card-large .card-age {
    font-size: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
}

.new-tag {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    opacity: 0.85;
}

.card-location svg {
    opacity: 0.8;
}

/* Bottom Grid */
.bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px 16px 8px;
    flex-shrink: 0;
}

.bottom-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.bottom-card:active {
    transform: scale(0.95);
}

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

.bottom-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 8px 6px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 4px;
}

.bottom-name {
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.bottom-age {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
}

/* Quick Match Popup */
.quick-match-popup {
    position: absolute;
    bottom: 80px;
    right: 16px;
    left: 50%;
    transform: translateX(-10%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 10px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 20;
    animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateX(-10%) translateY(0); }
    50% { transform: translateX(-10%) translateY(-5px); }
}

.quick-match-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(139, 124, 255, 0.5);
}

.quick-match-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-match-content {
    flex: 1;
    min-width: 0;
}

.quick-match-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-match-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin-top: 2px;
}

.quick-match-btn {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
}

.quick-match-btn:hover {
    transform: scale(1.1);
}

/* Bottom Nav */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 8px 16px 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-shrink: 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.bottom-nav-item:active {
    transform: scale(0.95);
}

.bottom-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.bottom-nav-item:first-child .bottom-avatar {
    border: 2px solid #8b5cf6;
}

.bottom-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid white;
    border-radius: 50%;
}

.bottom-nav-item span {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.bottom-nav-item:first-child span {
    color: #8b5cf6;
    font-weight: 600;
}

/* Home Indicator */
.home-indicator {
    width: 134px;
    height: 5px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    margin: 4px auto 4px;
    flex-shrink: 0;
}

/* Side Panel */
.side-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 60px;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    color: white;
    width: 280px;
}

.download-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.download-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.download-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.download-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.tg-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tg-info a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
}

.tg-info a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .app-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .side-panel {
        padding-top: 0;
    }

    .download-card {
        width: 100%;
        max-width: 390px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
        background: #1a1a2e;
    }

    .phone-frame {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .phone-frame::before {
        display: none;
    }

    .phone-screen {
        border-radius: 0;
    }

    .side-panel {
        display: none;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.hidden {
    display: none !important;
}

.modal-popup {
    position: relative;
    width: 100%;
    max-width: 280px;
    background: linear-gradient(180deg, #FFE8F0 0%, #F8F0FF 50%, #E8F0FF 100%);
    border-radius: 24px;
    padding: 28px 22px 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPopIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(196, 69, 105, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(196, 69, 105, 0.2);
    transform: rotate(90deg);
}

/* Promo Page */
.promo-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lock-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
}

.lock-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 40px;
    background: linear-gradient(180deg, #FFB6C1 0%, #FF69B4 50%, #E91E63 100%);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-heart {
    font-size: 18px;
    color: white;
    animation: heartBeat 1.2s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.lock-shackle {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 34px;
    border: 5px solid #FFD700;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 6px rgba(255, 215, 0, 0.3);
}

.heart-float {
    position: absolute;
    font-size: 18px;
    animation: floatUp 2s ease-in-out infinite;
}

.hf-1 {
    top: 10px;
    left: 0;
    animation-delay: 0s;
    font-size: 16px;
}

.hf-2 {
    top: 0;
    right: 5px;
    animation-delay: 0.6s;
    font-size: 20px;
}

.hf-3 {
    bottom: 30px;
    right: -5px;
    animation-delay: 1.2s;
    font-size: 14px;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(-12px); opacity: 1; }
}

.promo-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #FF69B4 0%, #C44569 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.promo-text {
    text-align: center;
    margin-bottom: 20px;
}

.promo-text p {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

.promo-highlight {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin: 8px 0 !important;
}

.promo-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #FF69B4 0%, #C44569 100%);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
    letter-spacing: 1px;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 105, 180, 0.5);
}

.promo-btn:active {
    transform: translateY(-1px);
}

/* Quiz Page */
.quiz-page {
    position: relative;
}

.quiz-cards-wrap {
    position: relative;
    min-height: 280px;
}

.quiz-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
}

.quiz-card.quiz-out {
    opacity: 0;
    transform: translateX(-40px) scale(0.9);
    pointer-events: none;
    z-index: 1;
}

.quiz-question {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 18px;
    padding-top: 5px;
}

.quiz-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.quiz-btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quiz-yes {
    background: linear-gradient(135deg, #FF69B4 0%, #C44569 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.quiz-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 105, 180, 0.4);
}

.quiz-no {
    background: rgba(255, 255, 255, 0.6);
    color: #666;
    border: 2px solid #ddd;
}

.quiz-no:hover {
    border-color: #bbb;
    background: rgba(255, 255, 255, 0.8);
}

/* Quiz Options */
.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}

.quiz-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.5);
}

.quiz-opt:hover {
    border-color: #FF69B4;
    transform: translateY(-2px);
}

.quiz-opt.selected {
    border-color: #FF69B4;
    background: rgba(255, 105, 180, 0.15);
}

.quiz-opt-img {
    width: 100%;
    aspect-ratio: 1.4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3px;
    background: linear-gradient(135deg, #FFB6C1, #E8F0FF);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-opt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quiz-opt-emoji {
    font-size: 24px;
    aspect-ratio: auto;
    padding: 5px 0;
}

.quiz-opt-label {
    font-size: 10px;
    font-weight: 700;
    color: #333;
}

/* Quiz Success */
.quiz-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: modalPopIn 0.4s ease;
}

.success-emoji {
    font-size: 42px;
    margin-bottom: 8px;
    animation: bounce 0.8s ease infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}

.success-title {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    margin-bottom: 6px;
}

.success-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.success-desc strong {
    color: #FF69B4;
    font-size: 18px;
}

.success-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #C084FC 100%) !important;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4) !important;
}

/* Reject Modal */
.reject-modal {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 60;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.reject-modal.show {
    display: flex;
}

.reject-content {
    background: white;
    padding: 28px 24px;
    border-radius: 20px;
    text-align: center;
    max-width: 240px;
    width: 100%;
    animation: modalPopIn 0.3s ease;
}

.reject-emoji {
    font-size: 40px;
    margin-bottom: 8px;
}

.reject-content h3 {
    margin-bottom: 8px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
}

.reject-content p {
    margin-bottom: 18px;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.reject-content .quiz-btn {
    width: 100%;
}
