Spaces:
Running
Running
File size: 1,315 Bytes
0dd2082 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | .terms-container {
max-width: 800px;
margin: 40px auto;
padding: 40px;
background: var(--bg-card);
border: 1px solid var(--border-subtle);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
}
.terms-header {
margin-bottom: 40px;
text-align: center;
}
.terms-header h1 {
font-size: 2.5rem;
color: var(--text-primary);
margin-bottom: 15px;
}
.terms-last-updated {
font-size: 0.9rem;
color: var(--text-muted);
}
.terms-section {
margin-bottom: 30px;
}
.terms-section h2 {
font-size: 1.5rem;
color: var(--accent-primary);
margin-bottom: 15px;
border-bottom: 1px solid var(--border-subtle);
padding-bottom: 10px;
}
.terms-section p {
font-size: 1rem;
line-height: 1.8;
color: var(--text-secondary);
margin-bottom: 15px;
}
.terms-section ul {
list-style: none;
padding-left: 0;
}
.terms-section li {
position: relative;
padding-left: 25px;
margin-bottom: 12px;
color: var(--text-secondary);
}
.terms-section li::before {
content: "→";
position: absolute;
left: 0;
color: var(--accent-tertiary);
}
.terms-footer {
margin-top: 50px;
padding-top: 30px;
border-top: 1px solid var(--border-subtle);
text-align: center;
color: var(--text-muted);
} |