﻿




*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.termsOfUseContent{
    margin-left:4rem;
    margin-right:4rem;
}

/* === SECTIONS === */
.section {
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up 0.5s ease forwards;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section:nth-child(1) {
    animation-delay: 0.05s;
}

.section:nth-child(2) {
    animation-delay: 0.10s;
}

.section:nth-child(3) {
    animation-delay: 0.15s;
}

.section:nth-child(4) {
    animation-delay: 0.20s;
}

.section:nth-child(5) {
    animation-delay: 0.25s;
}

.section:nth-child(6) {
    animation-delay: 0.30s;
}

.section:nth-child(7) {
    animation-delay: 0.35s;
}

.section:nth-child(8) {
    animation-delay: 0.40s;
}

.section:nth-child(9) {
    animation-delay: 0.45s;
}

.section:nth-child(10) {
    animation-delay: 0.50s;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gothic-gray);
}

.section-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 11px;
    color: var(--gothic-red);
    letter-spacing: 0.1em;
    min-width: 36px;
    opacity: 0.8;
}

.section h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gothic-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section p {
    color: var(--gothic-silver);
    margin-bottom: 14px;
}

    .section p:last-child {
        margin-bottom: 0;
    }

/* === BULLETED LIST === */
.gothic-list {
    list-style: none;
    margin: 18px 0;
    padding: 0;
}

    .gothic-list li {
        position: relative;
        padding: 10px 16px 10px 42px;
        margin-bottom: 8px;
        color: var(--gothic-silver);
        background: linear-gradient(90deg, rgba(178,34,34,0.06), transparent);
        border-left: 2px solid rgba(178,34,34,0.3);
        transition: border-color 0.2s, background 0.2s;
    }

        .gothic-list li:hover {
            border-left-color: var(--gothic-red);
            background: linear-gradient(90deg, rgba(178,34,34,0.12), transparent);
        }

        .gothic-list li::before {
            content: '✦';
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gothic-red);
            font-size: 11px;
        }

/* === HIGHLIGHT BOX === */
.highlight-box {
    margin: 24px 0;
    padding: 22px 28px;
    background: rgba(128, 0, 0, 0.12);
    border: 1px solid rgba(178,34,34,0.35);
    box-shadow: inset 0 0 30px rgba(178,34,34,0.05);
}

    .highlight-box p {
        color: var(--gothic-white) !important;
        font-weight: 500;
    }

/* === DIVIDER === */
.ornamental-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 44px 0;
    color: var(--gothic-dark-red);
    opacity: 0.5;
    font-size: 20px;
}

    .ornamental-divider::before,
    .ornamental-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gothic-dark-red));
    }

    .ornamental-divider::after {
        background: linear-gradient(90deg, var(--gothic-dark-red), transparent);


/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gothic-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gothic-dark-red);
    border-radius: 0;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gothic-red);
    }

/* === CURSOR === */
a {
    cursor: crosshair;
}
