/* GangbangCreampie - Landing Page Styles */

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

body {
    background-color: #0a0a0a;
    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 with low opacity */
#HeroBack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.9;
    filter: blur(2px);
    z-index: 1;
}

/* Gradient Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Disclaimer Modal / Alert Popup */
#Disclaimer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    max-width: 90%;
    z-index: 1000;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.disc-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

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

.disc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.5);
}

.disc-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

#Disclaimer .logo-text {
    display: block;
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 4px;
    color: #fff;
    letter-spacing: 2px;
}

#Disclaimer .logo-text span {
    font-weight: 700;
    background: linear-gradient(135deg, #ef4444, #f87171);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#Disclaimer .subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    padding: 6px 20px;
    border-radius: 20px;
    letter-spacing: 2px;
}

.disc-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
}

.disc-desc strong {
    color: #fff;
    font-weight: 600;
}

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

#DiscYes {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

#DiscYes svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

#DiscYes:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.6);
}

#DiscYes:hover svg {
    transform: translateX(4px);
}

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

#DiscNo {
    cursor: pointer;
    display: inline-block;
    padding: 14px 32px;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

#DiscNo:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* 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, #ef4444, #f87171);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

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

details article strong {
    color: #fecaca;
}

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(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #fca5a5;
}

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

details article caption {
    font-weight: 600;
    padding: 15px;
    color: #ef4444;
    text-align: left;
}

details article th {
    background: rgba(239, 68, 68, 0.2);
    padding: 15px;
    text-align: left;
    color: #f87171;
    font-weight: 600;
}

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

details article .key-takeaway {
    padding: 24px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(248, 113, 113, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    margin-bottom: 30px;
}

/* Footer - Language Links */
.lang-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    padding: 8px 16px;
    z-index: 10;
    border-top: 1px solid rgba(239, 68, 68, 0.1);
}

.lang-footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang-footer li a {
    color: #52525b;
    font-size: 0.65rem;
    text-decoration: none;
    transition: color 0.2s;
}

.lang-footer li a:hover {
    color: #ef4444;
}

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

    .disc-content {
        padding: 40px 28px 32px;
        border-radius: 28px;
    }

    .disc-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .disc-icon svg {
        width: 30px;
        height: 30px;
    }

    #Disclaimer .logo-text {
        font-size: 2rem;
    }

    #Disclaimer .subtitle {
        font-size: 0.8rem;
        padding: 5px 16px;
        margin-bottom: 24px;
    }

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

    #DiscYes {
        padding: 16px 28px;
        font-size: 0.95rem;
        border-radius: 14px;
    }

    #DiscNo {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .disc-glow {
        width: 250px;
        height: 250px;
    }
}
