@font-face {
    font-family: 'SansThirteenBlack';
    src: url('/fonts/sansthirteenblack.eot');
    src: local('☺'), url('/fonts/sansthirteenblack.woff') format('woff'), url('/fonts/sansthirteenblack.ttf') format('truetype'), url('/fonts/sansthirteenblack.svg#webfont180qSKaW') format('svg');
    font-weight: normal;
    font-style: normal;
}

.zaza {
    text-align: center;
    margin-top: 20px;
}

.death-button {
    background: #ca251f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px;
    font-family: Baskerville, Georgia, serif;
    font-size: 1.2em;
}

.death-button:hover {
    background: #ff0000;
}

/* Add this to your existing styles for the transition */
#dead {
    transition: all 0.5s ease;
}

.dead-text {
    color: #ca251f !important;
}

/* Rope styles */
.rope-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%;
    width: 40px;
    z-index: 1001;
    pointer-events: none;
}

.rope {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 200px;
    background: linear-gradient(
        to right,
        #d4af37 0%,
        #f9e076 20%,
        #d4af37 40%,
        #f9e076 60%,
        #d4af37 80%,
        #f9e076 100%
    );
    border-radius: 4px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.rope::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #d4af37, #f9e076);
    border-radius: 50%;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.rope-end {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 40px;
    background: linear-gradient(45deg, #d4af37, #f9e076);
    border-radius: 15px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.rope-knot {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 16px;
    background: linear-gradient(45deg, #d4af37, #f9e076);
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Update curtain styles to add fold effect near rope */
.curtain::before {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: 
        linear-gradient(
            to right,
            rgba(0,0,0,0.1) 0%,
            rgba(0,0,0,0.2) 50%,
            rgba(0,0,0,0.1) 100%
        ),
        linear-gradient(
            rgba(255,255,255,0.1) 0%,
            transparent 1%
        ) center;
    background-size: 100px 100px;
}

/* Add some movement to the rope during curtain animation */
@keyframes ropeSwing {
    0% { transform: translateX(-50%) rotate(0deg); }
    25% { transform: translateX(-50%) rotate(2deg); }
    75% { transform: translateX(-50%) rotate(-2deg); }
    100% { transform: translateX(-50%) rotate(0deg); }
}

.rope {
    animation: ropeSwing 4s ease-in-out;
}

/* Update the curtain animation to account for rope */
.curtain-left {
    transform-origin: left top;
}

.curtain-right {
    transform-origin: right top;
}

/* Add subtle shine to the rope */
.rope::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.2) 50%,
        transparent 100%
    );
    animation: ropeShine 2s infinite linear;
}

@keyframes ropeShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Curtain styles */
.curtain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
}

.curtain-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.curtain {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: #ca251f;
    transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.curtain::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50px;
    background: linear-gradient(to right, 
        rgba(0,0,0,0.2) 0%, 
        rgba(0,0,0,0.1) 30%, 
        rgba(0,0,0,0) 100%);
}

.curtain-left {
    left: 0;
    transform-origin: left;
    transform: translateX(0);
}

.curtain-right {
    right: 0;
    transform-origin: right;
    transform: translateX(0);
}

.curtain-left::after {
    right: 0;
}

.curtain-right::after {
    left: 0;
    transform: rotate(180deg);
}

/* Add some texture to the curtains */
.curtain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(255,255,255,0.1) 0%, transparent 1%) center,
        linear-gradient(rgba(255,255,255,0.1) 0%, transparent 1%) center,
        rgba(0,0,0,0.1);
    background-size: 100px 100px;
    background-position: center;
}

/* Content wrapper adjustments */
.content-wrapper {
    opacity: 0;
    transition: opacity 1s ease;
    transition-delay: 1.5s;
}

#crypto-price {
    text-align: center;
    margin: 20px 0;
    font-family: SansThirteenBlack, Impact, Helvetica, Arial, sans-serif;
    font-size: 24px;
}

#crypto-price p {
    margin: 10px 0;
    color: #161300;
}

/* Media Queries for Mobile */
@media screen and (max-width: 480px) {
    #crypto-price {
        font-size: 20px;
    }
}

body {
    margin: 0;
    padding: 0;
    background: #fffefc;
    color: #161300;
    font-family: Baskerville, Georgia, serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h2, p {
    text-align: center;
    font-size: 1.6rem;
}

div#container {
    width: 920px;
    margin: 0 auto;
    padding: 20px;
}

p {
    margin: 0 0 5px;
    padding: 0;
}

a:link,
a:visited {
    color: #ca251f;
    text-decoration: none;
}
a:hover,
a:active {
    color: #ff0000;
    text-decoration: underline;
}
a img {
    border: none;
}
p#answer {
    margin: 0px 0 0;
    padding: 0;
    height: 258px;
    overflow: hidden;
    font: normal 288px/288px SansThirteenBlack, Impact, Helvetica, Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0px 0px 30px rgba(0,0,0,0.1);
}
p#answer strong {
    font-weight: normal;
}
hr {
    color: #161300;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    width: 385px;
    height: 50px;
    border: 0;
    background: #161300;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
    margin: 20px auto;
}
.yes hr {
    width: 385px;
}
.no hr {
    width: 832px;
}
h2 {
    padding-top: 42px;
}
p#comment {
    margin:60px 0 0;
    padding: 0 0 22px;
    text-align: center;
    font-style: italic;
    font-size: 2rem;
    text-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}
.yes p#comment {
    margin-top: 0px;
}
p#count {
    margin: 102px 0 0;
    padding: 0 0 12px;
    line-height: 20px;
    height: 24px;
    text-align: center;
    font-size: 1.5em;
}
.no p#count {
    margin-top: 20px;
}
a#badge {
    display: block;
    position: absolute;
    top: -15px;
    right: 0;
    width: 129px;
    height: 128px;
}

iframe#like {
    margin: 0 auto;
    border: none;
    display: block;
    overflow: hidden;
    height: 45px;
    width: 225px;
}
p#tweet {
    margin: 0 auto;
    width: 110px;
}

p#footer {
    padding: 102px 0 20px;
    text-align:right;
    font-size: 0.9em;
}

/* Media Queries for Tablets */
@media screen and (max-width: 920px) {
    div#container {
        width: 100%;
        padding: 20px;
    }

    p#answer {
        font-size: 200px;
        line-height: 200px;
        height: 180px;
        margin-top: 40px;
    }

    .no hr {
        width: 90%;
    }

    h2, p {
        font-size: 20px;
        text-align: center;
    }

    p#comment {
        margin-top: 60px;
        font-size: 30px;
    }
}

/* Media Queries for Mobile */
@media screen and (max-width: 480px) {
    div#container {
        padding: 15px;
        margin-top:-30%;
    }

    p#answer {
        font-size: 120px;
        line-height: 120px;
        height: 120px;
        margin-top: 20px;
    }

    hr {
        width: 90%;
        height: 30px;
    }

    .yes hr {
        width: 90%;
    }

    h2 {
        padding-top: 20px;
        text-align: center;
    }

    p#comment {
        margin-top: 40px;
        padding-bottom: 15px;
    }

    p#footer {
        padding: 40px 0 20px;
    }
}