body {
    font-family: Inter;
    background: #0b0f1a;
    color: #e5e7eb;
    padding: 30px
}

.container {
    max-width: 900px;
    margin: auto;
    background: #11162a;
    padding: 40px;
    border-radius: 20px
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #7c7cff, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #7c7cff;
}

p {
    line-height: 1.8;
    margin-bottom: 15px;
}

a {
    color: #7c7cff;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #22d3ee;
}

button {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    background: linear-gradient(135deg, #7c7cff, #a78bfa);
    color: white;
    cursor: pointer;
    margin-bottom: 30px;
    transition: transform 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
}

.seller-notice {
    background: rgba(124, 124, 255, 0.08);
    border: 1px solid rgba(124, 124, 255, 0.25);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #e5e7eb;
    line-height: 1.7;
}

.seller-notice strong {
    color: #7c7cff;
}

.highlight-box {
    background: rgba(124, 124, 255, 0.1);
    border-left: 4px solid #7c7cff;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.success-box {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

ul {
    margin-left: 20px;
    line-height: 2;
}

ul li {
    margin-bottom: 10px;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #7c7cff, #a78bfa);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    margin-right: 10px;
}