/* ============================================
   天机阁 - 前台样式
   设计风格：国风古韵 + 现代简约
   ============================================ */

:root {
    --color-bg: #0d1117;
    --color-bg-light: #161b22;
    --color-card: #1c2128;
    --color-card-hover: #22272e;
    --color-border: #30363d;
    --color-gold: #d4af37;
    --color-gold-light: #e8c558;
    --color-gold-dark: #b8941f;
    --color-red: #c0392b;
    --color-red-light: #e74c3c;
    --color-text: #e6edf3;
    --color-text-secondary: #8b949e;
    --color-text-muted: #6e7681;
    --color-success: #2ea043;
    --color-warning: #d29922;
    --color-info: #388bfd;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-gold: 0 0 20px rgba(212,175,55,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

#app {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background: var(--color-bg);
    position: relative;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

/* ============================================
   Header
   ============================================ */
.tj-header {
    position: relative;
    padding: 20px 16px 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-bottom: 1px solid var(--color-gold-dark);
}

.tj-header-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192,57,43,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.tj-header-content {
    position: relative;
    text-align: center;
}

.tj-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.tj-logo-symbol {
    font-size: 28px;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(212,175,55,0.5);
    animation: rotate-slow 20s linear infinite;
    display: inline-block;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tj-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.tj-announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-secondary);
    padding: 4px 0;
}

.tj-announcement-icon { font-size: 14px; }

.tj-announcement-text {
    animation: scroll-text 15s linear infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes scroll-text {
    0% { transform: translateX(20px); opacity: 0.5; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(-20px); opacity: 0.5; }
}

/* ============================================
   Navigation
   ============================================ */
.tj-nav {
    display: flex;
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.tj-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 12px;
    transition: var(--transition);
    gap: 2px;
}

.tj-nav-item.active {
    color: var(--color-gold);
}

.tj-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
}

.tj-nav-icon {
    font-size: 18px;
    margin-bottom: 2px;
}

/* ============================================
   Main Content
   ============================================ */
.tj-main {
    padding: 16px;
    min-height: calc(100vh - 220px);
}

/* ============================================
   Cards
   ============================================ */
.tj-card {
    background: var(--color-card);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.tj-card:hover {
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.tj-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   Home - Hero Section
   ============================================ */
.tj-hero {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(180deg, rgba(212,175,55,0.05) 0%, transparent 100%);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.tj-hero-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.tj-hero-subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.tj-hero-bagua {
    font-size: 60px;
    margin: 16px auto;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   Category Tabs
   ============================================ */
.tj-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.tj-tabs::-webkit-scrollbar { display: none; }

.tj-tab {
    padding: 8px 16px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    color: var(--color-text-secondary);
    font-size: 13px;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.tj-tab.active {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
    font-weight: 600;
}

/* ============================================
   Divination Grid
   ============================================ */
.tj-divination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tj-divination-item {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-decoration: none;
    color: var(--color-text);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tj-divination-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.tj-divination-item:hover::before {
    opacity: 1;
}

.tj-divination-item:hover {
    border-color: var(--color-gold-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.tj-divination-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.tj-divination-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.tj-divination-desc {
    font-size: 11px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.tj-hot-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--color-red);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

/* ============================================
   Section Title
   ============================================ */
.tj-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tj-section-title::before {
    content: '';
    width: 3px;
    height: 18px;
    background: var(--color-gold);
    border-radius: 2px;
}

.tj-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--color-border), transparent);
}

/* ============================================
   Forms
   ============================================ */
.tj-form-group {
    margin-bottom: 16px;
}

.tj-form-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.tj-form-input,
.tj-form-select,
.tj-form-textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.tj-form-input:focus,
.tj-form-select:focus,
.tj-form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.tj-form-textarea {
    min-height: 80px;
    resize: vertical;
}

.tj-form-radio-group {
    display: flex;
    gap: 8px;
}

.tj-form-radio {
    flex: 1;
    padding: 10px;
    text-align: center;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    color: var(--color-text-secondary);
}

.tj-form-radio.active {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
    font-weight: 600;
}

/* ============================================
   Buttons
   ============================================ */
.tj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
    width: 100%;
}

.tj-btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg);
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.tj-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.tj-btn-primary:active {
    transform: translateY(0);
}

.tj-btn-secondary {
    background: var(--color-card-hover);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.tj-btn-danger {
    background: var(--color-red);
    color: #fff;
}

.tj-btn-ghost {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold-dark);
}

.tj-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   Result Display
   ============================================ */
.tj-result {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tj-result-header {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, transparent 100%);
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: 1px solid var(--color-gold-dark);
}

.tj-result-type {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.tj-result-symbol {
    font-size: 48px;
    color: var(--color-gold);
    margin: 12px 0;
    text-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.tj-result-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
    margin: 8px 0;
    letter-spacing: 2px;
}

.tj-result-level {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    margin: 8px 0;
}

.tj-result-level.great_good { background: rgba(231,76,60,0.2); color: #e74c3c; border: 1px solid #e74c3c; }
.tj-result-level.good { background: rgba(230,126,34,0.2); color: #e67e22; border: 1px solid #e67e22; }
.tj-result-level.minor_good { background: rgba(243,156,18,0.2); color: #f39c12; border: 1px solid #f39c12; }
.tj-result-level.neutral { background: rgba(149,165,166,0.2); color: #95a5a6; border: 1px solid #95a5a6; }
.tj-result-level.minor_bad { background: rgba(52,152,219,0.2); color: #3498db; border: 1px solid #3498db; }
.tj-result-level.bad { background: rgba(44,62,80,0.4); color: #95a5a6; border: 1px solid #2c3e50; }

.tj-result-summary {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.tj-result-section {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease backwards;
}

.tj-result-section:nth-child(2) { animation-delay: 0.1s; }
.tj-result-section:nth-child(3) { animation-delay: 0.2s; }
.tj-result-section:nth-child(4) { animation-delay: 0.3s; }
.tj-result-section:nth-child(5) { animation-delay: 0.4s; }
.tj-result-section:nth-child(6) { animation-delay: 0.5s; }
.tj-result-section:nth-child(7) { animation-delay: 0.6s; }

.tj-result-section-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tj-result-section-title::before {
    content: attr(data-icon);
    font-size: 18px;
}

.tj-result-section-content {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ============================================
   Tarot Cards
   ============================================ */
.tj-tarot-cards {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 0;
}

.tj-tarot-card {
    min-width: 100px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid var(--color-gold-dark);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
}

.tj-tarot-card-name {
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.tj-tarot-card-position {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.tj-tarot-card-orientation {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.tj-tarot-card-orientation.upright { background: rgba(46,160,67,0.2); color: #2ea043; }
.tj-tarot-card-orientation.reversed { background: rgba(192,57,43,0.2); color: #e74c3c; }

/* ============================================
   Actions Bar
   ============================================ */
.tj-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.tj-actions .tj-btn { flex: 1; }

/* ============================================
   Quota Display
   ============================================ */
.tj-quota {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.tj-quota-item {
    flex: 1;
}

.tj-quota-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gold);
}

.tj-quota-label {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* ============================================
   Tip Modal
   ============================================ */
.tj-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tj-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tj-modal {
    background: var(--color-card);
    border: 1px solid var(--color-gold-dark);
    border-radius: var(--radius);
    padding: 24px;
    width: 100%;
    max-width: 360px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.tj-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 16px;
}

.tj-tip-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.tj-tip-amount {
    padding: 16px;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.tj-tip-amount.active {
    border-color: var(--color-gold);
    background: rgba(212,175,55,0.1);
}

.tj-tip-amount-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold);
}

.tj-tip-amount-label {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.tj-tip-bonus {
    font-size: 13px;
    color: var(--color-success);
    text-align: center;
    margin-bottom: 16px;
}

/* ============================================
   Loading
   ============================================ */
.tj-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.tj-loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.tj-loading-text {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.tj-loading-dots::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
}

/* ============================================
   History List
   ============================================ */
.tj-history-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--color-text);
}

.tj-history-item:hover {
    border-color: var(--color-gold-dark);
    transform: translateX(4px);
}

.tj-history-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.tj-history-info {
    flex: 1;
    min-width: 0;
}

.tj-history-type {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.tj-history-summary {
    font-size: 12px;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tj-history-time {
    font-size: 11px;
    color: var(--color-text-muted);
    flex-shrink: 0;
    margin-left: 8px;
}

.tj-history-level {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
}

/* ============================================
   Profile
   ============================================ */
.tj-profile-header {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, transparent 100%);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.tj-profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-card);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 12px;
    color: var(--color-gold);
}

.tj-profile-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.tj-profile-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 16px;
}

.tj-profile-stat {
    text-align: center;
}

.tj-profile-stat-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold);
}

.tj-profile-stat-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ============================================
   Footer
   ============================================ */
.tj-footer {
    padding: 24px 16px;
    text-align: center;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-light);
}

.tj-footer-text {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.tj-footer-icp {
    font-size: 11px;
    color: var(--color-text-muted);
}

.tj-footer-disclaimer {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 4px;
    opacity: 0.7;
}

/* ============================================
   Poster
   ============================================ */
.tj-poster-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

#posterCanvas {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ============================================
   Empty State
   ============================================ */
.tj-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-muted);
}

.tj-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.tj-empty-text {
    font-size: 14px;
}

/* ============================================
   Toast
   ============================================ */
.tj-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-card);
    border: 1px solid var(--color-gold-dark);
    color: var(--color-text);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    z-index: 2000;
    box-shadow: var(--shadow);
    animation: toastIn 0.3s ease;
    max-width: 90%;
}

@keyframes toastIn {
    from { transform: translate(-50%, -20px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.tj-toast.success { border-color: var(--color-success); }
.tj-toast.error { border-color: var(--color-red); }

/* ============================================
   Locked Sections (Free/Paid Differentiation)
   ============================================ */
.tj-result-section-locked {
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.tj-result-section-locked .tj-result-section-content {
    filter: blur(6px);
    user-select: none;
    pointer-events: none;
    opacity: 0.5;
}

.tj-lock-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(180deg, rgba(13,17,23,0.4) 0%, rgba(13,17,23,0.85) 100%);
}

.tj-lock-icon {
    font-size: 36px;
    margin-bottom: 10px;
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.tj-lock-text {
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 6px;
    text-align: center;
}

.tj-lock-subtext {
    font-size: 12px;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 14px;
}

.tj-lock-btn {
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(212,175,55,0.3);
}

.tj-lock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212,175,55,0.5);
}

/* Unlock CTA */
.tj-unlock-cta {
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(192,57,43,0.05) 100%);
    border: 1px solid var(--color-gold-dark);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.tj-unlock-cta-icon {
    font-size: 40px;
    margin-bottom: 12px;
    animation: float 3s ease-in-out infinite;
}

.tj-unlock-cta-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.tj-unlock-cta-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 18px;
    line-height: 1.6;
}

.tj-unlock-cta-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.tj-unlock-cta-feature {
    font-size: 12px;
    color: var(--color-text-muted);
    padding: 4px 10px;
    background: var(--color-bg-light);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.tj-unlock-cta .tj-btn {
    max-width: 240px;
    margin: 0 auto;
}

/* Premium Badge */
.tj-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg);
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
    margin-left: 8px;
}

.tj-result-section-premium {
    border-color: var(--color-gold-dark);
    background: linear-gradient(180deg, rgba(212,175,55,0.04) 0%, var(--color-card) 100%);
}

.tj-result-section-premium .tj-result-section-title::after {
    content: '✦ 专属';
    font-size: 10px;
    color: var(--color-gold);
    margin-left: auto;
    padding: 2px 8px;
    background: rgba(212,175,55,0.1);
    border-radius: 8px;
    border: 1px solid var(--color-gold-dark);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 360px) {
    .tj-divination-grid {
        grid-template-columns: 1fr;
    }
    .tj-tip-amounts {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-text-muted); }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.hidden { display: none !important; }
