@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0B0F19;
    color: #E2E8F0;
}
#divbodyholder {
    padding: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    box-sizing: border-box;
}
#divbody {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.headerholder {
    background-color: transparent;
    border: none;
}
.header {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 16px;
}
.content {
    margin-bottom: 5%;
}
.nomargin {
    margin: 0;
}
.clear {
    clear: both;
}
#footer {
    padding-top: 24px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748B;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.5;
}
#footer a {
    color: #94A3B8 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
#footer a:hover {
    color: #F8FAFC !important;
}
a {
    text-decoration: none;
    color: #818CF8 !important;
    transition: color 0.3s ease;
}
a:hover {
    color: #C084FC !important;
}
a:visited {
    color: #818CF8 !important;
}
blockquote {
    background-color: rgba(30, 41, 59, 0.5);
    border-left: solid 4px #818CF8;
    margin: 20px 0;
    padding: 16px 24px;
    border-radius: 0 12px 12px 0;
}
blockquote p {
    margin: 0 !important;
    font-style: italic;
    color: #94A3B8 !important;
}

/* GDPR Banner Style */
.gdpr-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.gdpr-banner.show {
    opacity: 1;
    transform: translateY(0);
}
.gdpr-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 640px) {
    .gdpr-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}
.gdpr-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #E2E8F0;
    line-height: 1.5;
    margin: 0 !important;
}
.gdpr-buttons {
    display: flex;
    gap: 12px;
}
@media (max-width: 640px) {
    .gdpr-buttons {
        justify-content: center;
    }
}
.gdpr-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.gdpr-btn-accept {
    background: linear-gradient(135deg, #818CF8, #C084FC);
    color: #FFFFFF;
}
.gdpr-btn-accept:hover {
    box-shadow: 0 0 15px rgba(129, 140, 248, 0.4);
    transform: translateY(-1px);
}
.gdpr-btn-decline {
    background: transparent;
    color: #94A3B8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.gdpr-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #F8FAFC;
}
