body {
    background: #cccecf;


    color: rgb(252, 252, 253);
    font-family: Arial, sans-serif;
    text-align: center;
    padding-top: 50px;
    margin: 0;
}

img {
    width: 100%;
    max-width: 1600px;
    border-radius: 10px;
}

h2 {

    font-family: 'Poppins', sans-serif;

    font-size: 4rem;

    color: #121511;

    text-transform: uppercase;

    letter-spacing: 4px;

    font-weight: 900;

    transform: skew(-12deg);

    text-shadow:
        4px 4px 0 #000,
        8px 8px 0 #faf6f6,
        0 0 15px #c2cabf,
        0 0 30px #767e74;

    margin-top: 10px;

    margin-bottom: 30px;
}

.subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #cccccc;
}

.rooms {

    width: 95%;

    margin: 50px auto 100px auto;

    display: flex;

    justify-content: space-evenly;

    align-items: flex-start;

    gap: 80px;

    flex-wrap: nowrap;
}

.room img {

    width: 180px;

    height: 180px;

    object-fit: cover;

    border-radius: 50%;

    border: 4px solid white;
}

.room:hover {

    transform: translateY(-5px);

    box-shadow:
        0 0 20px #8cff66,
        0 0 40px #8cff66;
}

.room h3 {

    color: #8cff66;

    font-size: 1.7rem;

    margin-bottom: 15px;
}

.room p {

    color: white;

    margin: 0;
}

button {
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
}

/* BREW VAULT */

.vault-grid {

    width: 95%;

    max-width: 1600px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(5, 220px);

    justify-content: center;

    gap: 30px;

    padding-bottom: 100px;
}

.nft-card {

    background: transparent;

    border: none;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .3s;
}

.nft-card img {

    width: 220px;

    height: 220px;

    object-fit: cover;

    border-radius: 20px;

    transition: .3s;
}

.nft-card img:hover {

    transform: scale(1.08);

    box-shadow:
        0 0 15px #8cff66,
        0 0 30px #8cff66,
        0 0 50px #8cff66;
}

/* NFT PAGE */

.nft-page {

    width: 90%;

    max-width: 1400px;

    margin: 50px auto;

    display: flex;

    gap: 50px;

    align-items: flex-start;
}

.nft-image img {

    width: 400px;

    border-radius: 20px;

    box-shadow:
        0 0 20px #8cff66;
}

.nft-info {

    text-align: left;

    color: white;
}

.nft-info h2 {

    color: #8cff66;

    margin-bottom: 20px;
}

.nft-info h3 {

    margin-top: 30px;

    color: #8cff66;
}

.nft-info ul {

    padding-left: 20px;

} 
.room a {

    display: block;

    width: 100%;
}

.room img {

    display: block;

    width: 100%;
}.particle {

    position: fixed;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #0c2e01;

    box-shadow:
        0 0 10px #8cff66,
        0 0 20px #8cff66;

    opacity: .5;

    pointer-events: none;

    animation: floatParticle linear infinite;
}

.p1 {
    left: 10%;
    animation-duration: 12s;
}

.p2 {
    left: 25%;
    animation-duration: 18s;
}

.p3 {
    left: 40%;
    animation-duration: 14s;
}

.p4 {
    left: 60%;
    animation-duration: 20s;
}

.p5 {
    left: 80%;
    animation-duration: 16s;
}

.p6 {
    left: 92%;
    animation-duration: 22s;
}

@keyframes floatParticle {

    from {

        bottom: -20px;

        opacity: 0;
    }

    20% {

        opacity: .6;
    }

    80% {

        opacity: .6;
    }

    to {

        bottom: 110%;

        opacity: 0;
    }
}
.bubble {

    position: fixed;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: #ffd84d;

    box-shadow:
        0 0 10px #ffd84d,
        0 0 20px #ffd84d;

    opacity: .6;

    pointer-events: none;

    animation: bubbleRise linear infinite;
}

.b1 {
    left: 15%;
    animation-duration: 9s;
}

.b2 {
    left: 35%;
    animation-duration: 12s;
}

.b3 {
    left: 55%;
    animation-duration: 10s;
}

.b4 {
    left: 75%;
    animation-duration: 14s;
}

.b5 {
    left: 90%;
    animation-duration: 11s;
}

@keyframes bubbleRise {

    from {

        bottom: -30px;

        transform: translateX(0);

        opacity: 0;
    }

    20% {

        opacity: .7;
    }

    50% {

        transform: translateX(15px);
    }

    80% {

        opacity: .7;
    }

    to {

        bottom: 110%;

        transform: translateX(-15px);

        opacity: 0;
    }
} .alchemy-symbol {

    position: fixed;

    font-size: 120px;

    color: yellow;

    opacity: 1;

    z-index: 9999;

    pointer-events: none;
}

.s1 {
    top: 180px;
    left: 8%;
    animation-delay: 0s;
}

.s2 {
    top: 300px;
    right: 10%;
    animation-delay: 3s;
}

.s3 {
    top: 520px;
    left: 12%;
    animation-delay: 6s;
}

.s4 {
    top: 600px;
    right: 12%;
    animation-delay: 9s;
}

.s5 {
    top: 820px;
    left: 20%;
    animation-delay: 12s;
}

.s6 {
    top: 900px;
    right: 18%;
    animation-delay: 15s;
}

@keyframes symbolFade {

    0% {
        opacity: 0;
    }

    10% {
        opacity: .25;
    }

    40% {
        opacity: .25;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
} .alchemy-symbol {

    position: fixed;

    font-size: 80px;

    color: #ffd84d;

    opacity: .35;

    z-index: 50;

    pointer-events: none;
}

.s1 { top: 180px; left: 80px; }

.s2 { top: 220px; right: 80px; }

.s3 { top: 500px; left: 120px; }

.s4 { top: 520px; right: 120px; }

.s5 { top: 750px; left: 180px; }

.s6 { top: 780px; right: 180px; }
.alchemy-symbol {

    position: fixed !important;

    font-size: 120px !important;

    color: red !important;

    opacity: 1 !important;

    z-index: 9999 !important;

    pointer-events: none;
}

.s1 {
    top: 100px;
    left: 100px;
}

.s2 {
    top: 100px;
    right: 100px;
}

.s3 {
    top: 400px;
    left: 100px;
}

.s4 {
    top: 400px;
    right: 100px;
}

.s5 {
    top: 700px;
    left: 100px;
}

.s6 {
    top: 700px;
    right: 100px;
}
.room img {

    width: 260px;

    height: 260px;

    object-fit: cover;

    border-radius: 50%;

    border: 6px solid white;

    transition: .3s;

    box-shadow:
        0 0 15px rgba(255,255,255,.4);
}

.room img:hover {

    transform: scale(1.05);

    box-shadow:
        0 0 25px white,
        0 0 40px rgba(255,255,255,.6);
}
.room img {

    width: 150px !important;
    height: 150px !important;

    border-radius: 50%;
}
.banner {

    width: 95% !important;

    max-width: 1800px !important;

    display: block;

    margin: 0 auto 20px auto;
} 

.room a {

    background: transparent !important;

    border: none !important;

    box-shadow: none !important;

    padding: 0 !important;
} 
.room h3 {

    color: #000000;

    font-size: 20px;

    font-weight: bold;

    text-shadow:
        2px 2px 0 #000000,
        0 0 10px rgb(200, 200, 200);

    letter-spacing: 0.5px;

    margin-top: 15px;
} .room a {

    text-decoration: none;
} .wallet-button {
    position: fixed;
    top: 25px;
    right: 35px;
    background: transparent;
    color: #000000;
    border: 2px solid #030c00;
    border-radius: 30px;
    padding: 5px 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 0 12px rgba(244, 244, 241, 0.998);
}

.wallet-button:hover {
    background: rgba(251, 253, 250, 0.15);
    box-shadow: 0 0 22px rgba(252, 253, 252, 0.9);
} .social-icons {

    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 80px;

    margin-bottom: 40px;
}

.social-icons img {

    width: 28px;

    height: 28px;

    padding: 6px;

    background: white;

    border-radius: 10px;

    object-fit: contain;

    display: block;

    cursor: pointer;

    transition: transform 0.3s ease;
}.pharmakon-logo {
    position: fixed;
    top: 20px;
    left: 25px;
    z-index: 1000;
}

.pharmakon-logo img {
    width: 80px;
    height: auto;
    display: block;
}.lab-button {

    display: inline-block;

    padding: 12px 28px;

    background: #111111;

    color: white;

    text-decoration: none;

    border: 2px solid #f5faf8;

    border-radius: 30px;

    font-weight: bold;

    letter-spacing: 1px;

    transition: 0.3s;
}

.lab-button:hover {

    background: #f4f7f6;

    color: black;

    box-shadow: 0 0 20px #f1f4f3;
}
.legends-grid {

    max-width: 600px;

    margin: 50px auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    padding: 20px;

    justify-items: center;
}

.legend-card {

    text-align: center;

    width: 100%;
}

.legend-card img {

    width: 100%;

    max-width: 200px;

    border-radius: 15px;

    box-shadow: 0 0 20px rgba(248, 247, 247, 0.3);

    transition: 0.3s;
}

.legend-card img:hover {

    transform: scale(1.03);
}

.legend-card h3 {

    margin-top: 8px;

    color: rgb(249, 244, 244);

    font-size: 26px;

    font-weight: 700;

   font-family: 'Poppins', sans-serif;

    text-transform: uppercase;

    text-shadow: none;

    letter-spacing: 2px;

    transform: none;
}.legend-list {

    margin-top: 15px;

    font-family: 'Poppins', sans-serif;

    font-size: 18px;

    font-weight: 600;

    color: #111;

    line-height: 1.8;
}.legend-card a {

    text-decoration: none;

    color: inherit;
}

.legend-card a:hover {

    text-decoration: none;
}.legend-card h3 {

    color: rgb(253, 248, 248);

    text-decoration: none;

    margin-top: 8px;

    font-size: 24px;

    font-weight: bold;

    font-family: 'Poppins', sans-serif;

    text-transform: uppercase;

    text-shadow: none;

    letter-spacing: 1px;

    transform: none;
}.hall-of-fame-container {

    text-align: center;

    max-width: 900px;

    margin: 50px auto;
}

.hall-of-fame-container img {

    width: 250px;

    border-radius: 15px;
}

.hall-of-fame-container h1 {

    font-family: 'Poppins', sans-serif;

    font-size: 40px;

    color: black;

    text-shadow: none;

    transform: none;
}

.hall-list {

    margin-top: 40px;

    font-family: 'Poppins', sans-serif;

    font-size: 24px;

    font-weight: 600;

    color: black;
}

.hall-list p {

    margin: 25px 0;
}.holders-container {

    max-width: 900px;

    margin: 40px auto;
}

.holder-card {

    background: white;

    border-radius: 15px;

    padding: 20px 30px;

    margin-bottom: 20px;

    box-shadow: 0 0 15px rgba(0,0,0,0.15);

    text-align: left;

    font-family: 'Poppins', sans-serif;
}

.holder-card h2 {

    margin: 0;

    font-size: 28px;

    color: black;

    text-shadow: none;

    transform: none;
}

.holder-card p {

    margin-top: 10px;

    font-size: 20px;

    color: #444;
}

.gold {

    background: #ffd700;
}

.silver {

    background: #d9d9d9;
}

.bronze {

    background: #cd7f32;
}
.holder-card {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}

.holder-info {

    flex: 1;
}

.deso-icon {

    width: 50px;

    height: 50px;

    object-fit: contain;

    flex-shrink: 0;

    margin-left: auto;

    transition: all 0.3s ease;

    cursor: pointer;
}

.deso-icon:hover {

    transform: scale(1.25);

    filter: drop-shadow(0 0 8px #00b7ff);
}.hall-description {

    max-width: 800px;

    margin: 40px auto 100px auto;

    text-align: center;

    font-family: 'Poppins', sans-serif;

    font-size: 18px;

    line-height: 1.8;

    color: black;
}.holder-rank {

    font-size: 18px;

    font-weight: 700;

    color: black;

    margin-bottom: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;
} .deso-icon {

    width: 50px;

    height: 50px;

    object-fit: contain;

    flex-shrink: 0;

    transition: all 0.3s ease;

    cursor: pointer;
}

.deso-icon:hover {

    transform: scale(1.25);

    filter: drop-shadow(0 0 8px #00b7ff);
} .legendary {

    background: #1f1f1f;
}

.legendary h2,
.legendary .holder-rank {

    color: white;
}

.market {

    background: #4da6ff;
}

.market h2,
.market .holder-rank {

    color: white;
}

.blood {

    background: #b22222;
}

.blood h2,
.blood .holder-rank {

    color: white;
} .glitch-screen {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,0.08) 0px,
            rgba(255,255,255,0.08) 2px,
            transparent 2px,
            transparent 5px
        );
}

.glitch-active {
    animation: oldMonitor 1.8s steps(4) forwards;
}

.glitch-active .glitch-screen {
    opacity: 1;
    animation: interference 0.15s infinite;
}

.blackout::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(57, 172, 31);
    z-index: 15000;
}

@keyframes oldMonitor {
    0% {
        filter: none;
    }

    25% {
        filter: contrast(2) grayscale(0.5);
        transform: scale(1.01);
    }

    50% {
        filter: contrast(3) saturate(0.3);
        image-rendering: pixelated;
    }

    75% {
        filter: grayscale(1) contrast(4);
        transform: scale(0.99);
    }

    100% {
        filter: none;
        transform: none;
    }
}

@keyframes interference {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 20px;
    }
}.alchemist-warning {

    position: fixed;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 10001;

    color: #ff0000;

    font-size: 42px;

    font-family: 'Poppins', sans-serif;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 4px;

    opacity: 0;

    text-shadow:
        0 0 10px red,
        0 0 20px red,
        0 0 40px red;

    pointer-events: none;
}

.show-warning {

    .show-warning {

    opacity: 1;

    animation: blinkWarning 0.4s infinite;
}
}

@keyframes warningFlash {

    0% { opacity: 0; }

    20% { opacity: 1; }

    80% { opacity: 1; }

    100% { opacity: 0; }
} @keyframes blinkWarning {

    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
} .alchemist-warning {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20000;
    color: red;
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 3px;
    opacity: 0;
    pointer-events: none;
    text-shadow:
        0 0 10px red,
        0 0 25px red,
        0 0 45px red;
}

.alchemist-warning.show-warning {
    opacity: 1;
    animation: blinkWarning 0.5s infinite;
}

@keyframes blinkWarning {
    0% { opacity: 1; }
    50% { opacity: 0.25; }
    100% { opacity: 1; }
} .green-closing::before {
    content: "";
    position: fixed;
    inset: 0;
    background: #34ff6e;
    z-index: 15000;
    animation: closeGreenScreen 0.9s forwards;
}

@keyframes closeGreenScreen {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 1;
    }
} 
.construction-message {

max-width: 900px;

margin: 120px auto;

text-align: center;

color: white;

font-family: 'Poppins', sans-serif;

}

.construction-message h1 {

font-size: 52px;

margin-bottom: 30px;
}

.construction-message p {

font-size: 24px;

margin-bottom: 20px;

}

.construction-message h2 {

margin-top: 50px;

color: black;

font-size: 28px;

font-weight: 700;

text-shadow: none;

letter-spacing: 1px;

} .journal-container {

    max-width: 1000px;

    margin: 80px auto;

    display: flex;

    flex-direction: column;

    gap: 30px;
}

.journal-card {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 140px;

    border-radius: 20px;

    text-decoration: none;

    transition: 0.3s;

    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.journal-card:hover {

    transform: scale(1.03);
}

.journal-card h2 {

    margin: 0;

    font-size: 38px;

    font-family: 'Poppins', sans-serif;

    font-weight: 700;

    color: #111;

    letter-spacing: 1px;

    text-shadow: none;
}

.dossier-card {

    background: #e6d2a2;

    color: #2b1d0e;
}

.lore-card {

    background: #34ff6e;

    color: #111;
}

.news-card {

    background: #1d3d7a;

    color: black;
}
.dossier-container {

    max-width: 1200px;

    margin: 60px auto;

    padding: 20px;
}

.dossier-banner {

    width: 30%;

    margin: 0 auto 10px auto;

    display: block;

    border-radius: 10px;
}


.dossier-container h1 {
    font-family: 'Poppins', sans-serif;
font-weight: 700;
letter-spacing: 1px;

    color: black;

    font-size: 42px;

    margin-bottom: 25px;

    text-align: center;
}

.dossier-container p {
    font-family: 'Poppins', sans-serif;
font-weight: 400;

    font-size: 22px;

    line-height: 1.8;

    color: black;

    margin-bottom: 20px;

    text-align: left;
}

.dossier-container hr {

    margin: 80px 0;

    border: none;

    border-top: 3px solid rgba(0,0,0,0.15);
}.overview-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    max-width: 1200px;

    margin: 50px auto 80px auto;
}

.overview-card {

    background: rgba(255,255,255,0.85);

    border-radius: 20px;

    padding: 30px;

    text-align: center;

    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.overview-card span {

    display: block;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    color: #666;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.overview-card strong {

    display: block;

    font-family: 'Poppins', sans-serif;

    font-size: 34px;

    font-weight: 700;

    color: #111;
} .journal-card {

    opacity: 0;

    transition: all 0.8s ease;
}

.journal-card:nth-child(1) {

    transform: translateX(-150px);
}

.journal-card:nth-child(2) {

    transform: translateX(150px);
}

.journal-card:nth-child(3) {

    transform: translateY(150px);
}

.journal-card.show {

    opacity: 1;

    transform: translate(0, 0);
}.legend-card:nth-child(1),
.legend-card:nth-child(3) {

    animation: moveLeft 6s ease-in-out infinite;
}

.legend-card:nth-child(2),
.legend-card:nth-child(4) {

    animation: moveRight 6s ease-in-out infinite;
}

@keyframes moveLeft {

    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-120px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes moveRight {

    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(120px);
    }

    100% {
        transform: translateX(0);
    }
}/* HALL OF FAME */

.legend-card:nth-child(1) img:hover {

    box-shadow:
        0 0 20px #ffd700,
        0 0 40px #ffd700,
        0 0 60px #ffd700;

    transform: scale(1.05);
}

/* CENTURY CLUB */

.legend-card:nth-child(2) img:hover {

    box-shadow:
        0 0 20px #ff66cc,
        0 0 40px #ff66cc,
        0 0 60px #ff66cc;

    transform: scale(1.05);
}

/* ALCHEMIST ELITE */

.legend-card:nth-child(3) img:hover {

    box-shadow:
        0 0 20px #00ccff,
        0 0 40px #00ccff,
        0 0 60px #00ccff;

    transform: scale(1.05);
}

/* HISTORIC ACHIEVEMENTS */

.legend-card:nth-child(4) img:hover {

    box-shadow:
        0 0 20px #ff9900,
        0 0 40px #ff9900,
        0 0 60px #ff9900;

    transform: scale(1.05);
}/* DESTELLOS ALQUÍMICOS */

.spark {

    position: fixed;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #39ff14;

    box-shadow:
        0 0 8px #39ff14,
        0 0 16px #39ff14;

    pointer-events: none;

    z-index: -1;

    animation: floatSpark 20s linear infinite;
}

.spark:nth-child(1) {

    top: 15%;
    left: 10%;
}

.spark:nth-child(2) {

    top: 70%;
    left: 20%;
}

.spark:nth-child(3) {

    top: 35%;
    left: 80%;
}

.spark:nth-child(4) {

    top: 85%;
    left: 70%;
}

.spark:nth-child(5) {

    top: 50%;
    left: 50%;
}

.fast {

    position: fixed;

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: #39ff14;

    box-shadow:
        0 0 8px #39ff14,
        0 0 16px #39ff14;

    z-index: -1;

    animation: ufo 3s linear infinite;
    .fast1  { animation-delay: 0s; }
.fast2  { animation-delay: -0.3s; }
.fast3  { animation-delay: -0.6s; }
.fast4  { animation-delay: -0.9s; }
.fast5  { animation-delay: -1.2s; }
.fast6  { animation-delay: -1.5s; }
.fast7  { animation-delay: -1.8s; }
.fast8  { animation-delay: -2.1s; }
.fast9  { animation-delay: -2.4s; }
.fast10 { animation-delay: -2.7s; }
.fast11 { animation-delay: -3s; }
.fast12 { animation-delay: -3.3s; }
}
@keyframes erraticSpark {

    0% {

        transform: translate(-100vw, 50px);
    }

    15% {

        transform: translate(-30vw, 80px);
    }

    20% {

        transform: translate(-30vw, 80px);
    }

    35% {

        transform: translate(10vw, -20px);
    }

    40% {

        transform: translate(10vw, -20px);
    }

    60% {

        transform: translate(50vw, 120px);
    }

    65% {

        transform: translate(50vw, 120px);
    }

    85% {

        transform: translate(80vw, -60px);
    }

    100% {

        transform: translate(120vw, 20px);
    }
}@keyframes ufo {

    0% {

        transform:
        translate(-100vw, calc(100vh * 0.1))
        scale(0.5);

        opacity: 0;
    }

    10% {

        opacity: 1;
    }

    30% {

        transform:
        translate(-20vw, calc(100vh * 0.4))
        scale(1);
    }

    35% {

        transform:
        translate(-20vw, calc(100vh * 0.4))
        scale(1);
    }

    60% {

        transform:
        translate(40vw, calc(100vh * 0.2))
        scale(1.2);
    }

    65% {

        transform:
        translate(40vw, calc(100vh * 0.2))
        scale(1.2);
    }

    100% {

        transform:
        translate(120vw, calc(100vh * 0.8))
        scale(0.5);

        opacity: 0;
    }
}.fast13 { animation-delay: -3.6s; }

.fast14 { animation-delay: -3.9s; }

.fast15 { animation-delay: -4.2s; }

.fast16 { animation-delay: -4.5s; }

.fast17 { animation-delay: -4.8s; }

.fast18 { animation-delay: -5.1s; }

.fast19 { animation-delay: -5.4s; }

.fast20 { animation-delay: -5.7s; }

.fast21 { animation-delay: -6s; }

.fast22 { animation-delay: -6.3s; }
/* ENTRADA DE TARJETAS */

.holder-card {

    opacity: 0;

    transition: all 1s ease;
}

.holder-card:nth-child(odd) {

    transform: translateX(-1000px);
}

.holder-card:nth-child(even) {

    transform: translateX(1000px);
}

.holder-card.show {

    opacity: 1;

    transform: translateX(0);
}.green {

    background: #f2f3f2;
}.journal-card {

    transition: all 0.35s ease;
}

.journal-card:hover {

    transform: scale(1.08);

    box-shadow:
        0 0 20px rgb(244, 245, 244),
        0 0 40px rgba(250, 250, 250, 0.838),
        0 0 60px rgb(255, 255, 255);
}/* ===== MOBILE VERSION ===== */

@media (max-width: 768px) {

    /* =========================
       HOME
    ========================= */

    .banner {
        width: 90%;
        max-width: 500px;
        margin: 20px auto;
    }

    .banner img {
        width: 100%;
        height: auto;
    }

    .wallet-button {

        width: 280px !important;

        font-size: 16px !important;

        margin: 10px auto 35px auto !important;

        position: relative !important;

        top: 0 !important;

        right: auto !important;
    }

    .pharmakon-logo {

        top: 10px !important;

        left: 15px !important;
    }

    .pharmakon-logo img {

        width: 50px !important;
    }

    .rooms {

        display: grid !important;

        grid-template-columns: 1fr 1fr;

        gap: 25px;

        width: 85%;

        margin: 30px auto;

        justify-items: center;

        align-items: start;
    }

    .room {

        text-align: center;
    }

    .room img {

        width: 110px !important;

        height: 110px !important;
    }

    .room h3 {

        width: 100%;

        text-align: center !important;

        font-size: 16px !important;

        margin-top: 10px;
    }

    /* =========================
       APOTHECARY
    ========================= */

    .vault-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 8px;

        width: 98%;

        margin: auto;
    }

    .nft-card img {

        width: 150px !important;

        height: 150px !important;
    }

    /* =========================
       LEGENDS / HALL OF FAME
    ========================= */

    .legends-grid {

        grid-template-columns: 1fr;

        width: 95%;

        gap: 30px;
    }

    .holder-card {

        width: 95% !important;

        margin-left: auto !important;

        margin-right: auto !important;

        padding: 20px !important;

        box-sizing: border-box;
    }

    /* =========================
       DOSSIER
    ========================= */

    .overview-grid {

        grid-template-columns: 1fr;
    }

    /* =========================
       JOURNAL
    ========================= */

    .journal-container {

        width: 95%;
    }

    .journal-card {

        width: 100%;
    }

    /* =========================
       TITULOS
    ========================= */

    h1 {

        font-size: 40px;
    }

    h2 {

        font-size: 30px;
    }

    h3 {

        font-size: 24px;
    }
}

.banner {

    margin-top: 15px !important;
}
.holder-card h2 {

    font-size: 22px !important;
}
.holder-card h2 {

    font-size: 16px !important;

    letter-spacing: 2px !important;
}
.buy-nfts-button {

    display: inline-block;

    background: #000;

    color: white;

    text-decoration: none;

    padding: 14px 30px;

    border-radius: 30px;

    border: 2px solid white;

    font-weight: bold;

    transition: 0.3s;
}

.buy-nfts-button:hover {

    transform: scale(1.05);

    box-shadow: 0 0 15px rgb(79, 185, 250);
}