/* 1. Main Content Layout */
.legal-main-wrapper {
    padding: 100px 0;
    position: relative;
    background: var(--primary-bg);
}

.legal-content-card {
    background: var(--legal-card-bg);
    backdrop-filter: blur(30px);
    border: var(--legal-border);
    border-radius: 32px;
    padding: clamp(2rem, 8vw, 6rem);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

/* 2. Abstract Background Decorations */
.legal-bg-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.legal-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-color);
    top: 10%;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #00f2fe;
    bottom: 10%;
    right: -200px;
}

/* 3. Typography & Sectioning */
.legal-section {
    margin-bottom: 4rem;
    position: relative;
}

.legal-section:last-child {
    margin-bottom: 0;
}

/* Section Index Numbers - Editorial Style */
.section-index {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.legal-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: left;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 2rem 0 1rem;
}

.legal-section p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

/* 4. Enhancement Components */
.legal-highlight-box {
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.05) 0%, transparent 100%);
    border-left: 2px solid var(--accent-color);
    padding: 2.5rem;
    border-radius: 0 20px 20px 0;
    margin: 3rem 0;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.legal-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
}

.legal-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.last-updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
