:root {
    --bs-primary: #760991;
    --bs-primary-rgb: 118, 9, 145;
}

body {
    background: #111111;
    color: rgb(255, 255, 255);
    font-family: 'Work Sans', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.rainbow {
    background-repeat: repeat-x;
    background: linear-gradient(to right, #ff6f6f, #ff7a50, #ffcc46, #6ac653, #4562cb, #b43fa8);
    animation: 10s linear infinite rainbow;
    background-size: 200% 100% !important;
}

@keyframes rainbow {
    0% { background-position: 0; }
    100% { background-position: 800% 0; }
}

.no-decoration {
    text-decoration: none;
}

.hoverbut {
    position: relative;
    top: 0;
    transition: top 0.5s;
}

.hoverbut:hover {
    top: -2px;
}

.hero-header {
    background: linear-gradient(1deg, rgba(0,0,0,0.5), rgba(0,0,0,0.67)), linear-gradient(to top, #0b0b0b, #240030);
    background-position: center;
    background-size: cover;
    padding-bottom: 3rem;
}

.imprint-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 1.1rem;
}

.footer-separator {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

/* Imprint page */
.imprint-icon-box {
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.imprint-col:hover .imprint-icon-box {
    transform: translateY(-5px);
    background: var(--bs-primary);
}

.imprint-section h5 {
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.imprint-section p,
.imprint-section a {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.imprint-section a:hover {
    color: var(--bs-primary);
    text-decoration: underline;
}

/* Privacy Policy page */
.privacy-section h5 {
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: #fff;
    font-weight: 700;
    margin-top: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.privacy-section h6 {
    color: var(--bs-primary);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-section p,
.privacy-section li {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.privacy-section a {
    color: #ccc;
}

.privacy-section a:hover {
    color: var(--bs-primary);
    text-decoration: underline;
}

/* Terms of Service & SLA pages */
.terms-section h5 {
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: #fff;
    font-weight: 700;
    margin-top: 2rem;
}

.terms-section p,
.terms-section li {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-section a {
    color: #ccc;
}

.terms-section a:hover {
    color: var(--bs-primary);
    text-decoration: underline;
}

/* SLA page */
.highlight-box {
    background: rgba(118, 9, 145, 0.1);
    border-left: 4px solid #760991;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0;
}
