/* Register / Pricing Page */

.reg-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px 60px;
}

/* Title */
.reg-title {
    text-align: center;
    margin-bottom: 28px;
}

.reg-title h1 {
    font-size: 28px;
    font-weight: 900;
    color: #e2e8f0;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.reg-title p {
    font-size: 15px;
    color: #64748b;
}

.reg-title-line {
    width: 50px;
    height: 3px;
    background: #6366f1;
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Warning Banner */
.reg-warning {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    padding: 16px 24px;
    text-align: center;
    color: #ef4444;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reg-warning i {
    font-size: 18px;
}

/* Cards Grid */
.reg-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

/* Card */
.reg-card {
    background: #1e2128;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.reg-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.reg-card.card-highlight {
    border-color: rgba(239, 68, 68, 0.25);
}

.reg-card.card-highlight:hover {
    border-color: rgba(239, 68, 68, 0.4);
}

/* Card Header */
.reg-card-header {
    padding: 24px 20px 16px;
}

.tier-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tier-member { color: #22c55e; }
.tier-premium { color: #f97316; }
.tier-database { color: #3b82f6; }
.tier-verified { color: #ef4444; }

.tier-price {
    font-size: 32px;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1.1;
}

/* Meta */
.reg-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 16px;
    font-size: 13px;
    color: #475569;
}

.reg-card-meta strong {
    color: #94a3b8;
    font-weight: 600;
}

/* Preview */
.reg-card-preview {
    display: flex;
    padding: 0 20px 16px;
    gap: 16px;
}

.preview-col {
    flex: 1;
    text-align: center;
}

.preview-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: #475569;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
}

.badge-member-prev { background: linear-gradient(135deg, #22c55e, #16a34a); }
.badge-premium-prev { background: linear-gradient(135deg, #f97316, #ea580c); }
.badge-database-prev { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.badge-verified-prev { background: linear-gradient(135deg, #22c55e, #059669); }

.nick-color {
    font-size: 14px;
    font-weight: 700;
}

/* Divider */
.reg-card-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0 20px;
}

/* Features */
.reg-features {
    list-style: none;
    padding: 16px 20px;
    margin: 0;
}

.reg-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 13px;
    color: #94a3b8;
}

.reg-features li:last-child {
    border-bottom: none;
}

.feat-yes {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.feat-no {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Buy Button */
.reg-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 20px 20px;
    padding: 12px;
    border-radius: 8px;
    background: #252a35;
    border: 1px solid rgba(255,255,255,0.08);
    color: #94a3b8;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.reg-buy-btn:hover {
    background: #2a2f3a;
    color: #e2e8f0;
    border-color: rgba(255,255,255,0.15);
}

.reg-buy-btn.btn-verified {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.reg-buy-btn.btn-verified:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .reg-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reg-cards {
        grid-template-columns: 1fr;
    }

    .reg-title h1 {
        font-size: 22px;
    }
}
