
.terms-box {
    max-width: 500px;
    margin: auto;
    background: rgba(17, 24, 39, 0.95);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(0,255,150,0.15);
    max-height: 80vh;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.terms-box h1 {
    text-align: center;
    color: #22c55e;
    margin-bottom: 5px;
}

.terms-box small {
    display: block;
    text-align: center;
    color: #94a3b8;
    margin-bottom: 20px;
}

.terms-box h2 {
    color: #38bdf8;
    margin-top: 18px;
    font-size: 15px;
}

.terms-box p,
.terms-box li {
    font-size: 13px;
    line-height: 1.6;
    color: #e5e7eb;
}

.terms-box ul {
    padding-left: 18px;
}

.badge {
    display: inline-block;
    background: #22c55e;
    color: #000;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.highlight {
    color: #facc15;
}

.back-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(90deg,#22c55e,#4ade80);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.back-btn:hover {
    opacity: 0.8;
}