/* Big7 Cam - Landing Page Styles */
/* Branding: Dark grey (#3a3a3a), Magenta (#e91e8a), Green (#4CAF50), Red (#e53935) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-align: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Image - visible behind popup like Big7.com */
#HeroBack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.9;
    filter: blur(2px);
    z-index: 1;
}

/* Dark Overlay - dims the background behind popup */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
}

/* ======================== */
/* Disclaimer Modal (Big7 style) */
/* ======================== */
#Disclaimer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    max-width: 92%;
    z-index: 1000;
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.disc-content {
    position: relative;
    background: rgba(50, 50, 50, 0.95);
    border-radius: 8px;
    padding: 40px 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
}

.disc-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    color: #e91e8a;
    margin-bottom: 16px;
}

.disc-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

/* Buttons Container */
.disclaimer-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Green "Ja" button */
#DiscYes {
    cursor: pointer;
    display: block;
    width: 100%;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    border: none;
    background: #4CAF50;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

#DiscYes:hover {
    background: #43A047;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4);
}

#DiscYes:active {
    transform: translateY(0);
}

/* Red "Nein" button */
#DiscNo {
    cursor: pointer;
    display: block;
    width: 100%;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    border: none;
    background: #e53935;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

#DiscNo:hover {
    background: #d32f2f;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.4);
}

#DiscNo:active {
    transform: translateY(0);
}

/* ======================== */
/* Hidden SEO Content */
/* ======================== */
details,
summary {
    list-style: none;
}

details summary {
    display: none;
}

details summary::-webkit-details-marker {
    display: none;
}

/* SEO Article Styles (hidden but crawlable) */
details article {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: left;
}

details article h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

details article h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #4CAF50;
}

details article h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #e91e8a;
}

details article p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #d1d5db;
}

details article a {
    color: #e91e8a;
    text-decoration: none;
}

details article a:hover {
    text-decoration: underline;
}

details article strong {
    color: #f0f0f0;
}

details article ul,
details article ol {
    margin: 20px 0;
    padding-left: 30px;
    color: #d1d5db;
}

details article li {
    margin-bottom: 12px;
    line-height: 1.7;
}

details article blockquote {
    background: rgba(233, 30, 138, 0.1);
    border-left: 4px solid #e91e8a;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #f9a8d4;
}

details article table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 10px;
    overflow: hidden;
}

details article th {
    background: rgba(76, 175, 80, 0.2);
    padding: 15px;
    text-align: left;
    color: #66BB6A;
    font-weight: 600;
}

details article td {
    padding: 15px;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    color: #d1d5db;
}

details article .key-takeaway {
    padding: 24px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(233, 30, 138, 0.1));
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    margin-bottom: 30px;
}

/* ======================== */
/* Responsive */
/* ======================== */
@media screen and (max-width: 600px) {
    #Disclaimer {
        width: 94%;
        max-width: 94%;
    }

    .disc-content {
        padding: 32px 24px 28px;
    }

    .disc-title {
        font-size: 1.1rem;
    }

    .disc-desc {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    #DiscYes,
    #DiscNo {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}