/* =========================================================================================================================== */
/*                                            🧩 ABOUT BITCOIN – WHITEPAPER                                                    */
/*                                            📍 static/css/pages/about_bitcoin/whitepaper.css                                 */
/* =========================================================================================================================== */



/* WHITEPAPER – Full-Width, rem-based, no white frame */
.WHITEPAPER-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.WHITEPAPER-pdf-wrapper {
    width: 95vw;
    max-width: 120rem;
    height: 90vh;
    margin: 2rem auto 0 auto;
    background: transparent;
    border-radius: 1rem;
    padding: 0;
    box-shadow: 0 0.4rem 1.4rem rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.WHITEPAPER-pdf {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
}


/* WHITEPAPER – Button Styling */
.WHITEPAPER-btn {
    background-color: #222;      /* Anthrazit */
    color: #fff;
    border: none;
    padding: 0.8rem 1.6rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.WHITEPAPER-btn:hover {
    background-color: #d4af37;   /* Gold-Effekt */
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    animation: whitepaper-goldpulse 1.2s ease-in-out infinite;
}

@keyframes whitepaper-goldpulse {
    0%   { box-shadow: 0 0 8px  rgba(212,175,55,0.4); }
    50%  { box-shadow: 0 0 16px rgba(212,175,55,0.7); }
    100% { box-shadow: 0 0 8px  rgba(212,175,55,0.4); }
}