* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --regular_text:#282121;
    --regular_background: rgb(249, 247, 247);
    --ticker_down: oklch(61.709% 0.17125 23.549);
    --ticker_up: #282121;
    cursor: url('../img/olive_cursor.png') 16 11, auto;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--regular_background);
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/noise.svg');
    pointer-events: none;
    z-index: 9999;
    opacity: 0.67;
    filter: sepia(0.5) contrast(1.2);
    mix-blend-mode: multiply;
}

.reg-dots {
    position: fixed;
    bottom: 5px;
    right: 9px;
    width: 46px;
    height: 10px;
    background-image:
        radial-gradient(circle 3px at 5px 5px, #00A9CE 99%, transparent 100%),
        radial-gradient(circle 3px at 15px 5px, #D4006A 99%, transparent 100%),
        radial-gradient(circle 3px at 25px 5px, #E0C800 99%, transparent 100%),
        radial-gradient(circle 3px at 35px 5px, #282121 99%, transparent 100%);
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 10000;
}

.social-row {
    flex-wrap: wrap;
}

.ticker-container {
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
    position: relative;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 60s linear infinite;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 30px;
    white-space: nowrap;
    color: var(--regular_text);
    font-family: "Imbue", serif;
    font-size: 22px;
}

.ticker-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/gray_box.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.tick-bg-1::before { transform: scaleX(-1); }
.tick-bg-2::before { transform: scale(-1); }
.tick-bg-3::before { transform: scaleY(-1); }

.ticker-symbol {
    font-weight: 700;
}

.ticker-up {
    color: var(--ticker_up);
}

.ticker-down {
    color: var(--ticker_down);
}

.ticker-separator {
    color: #666;
    padding: 0 8px;
}

.body-content {
    text-align: center;
    padding: 10px clamp(24px, 5vw, 48px);
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.title-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.buttons {
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    color: var(--regular_text);
    padding: 8px 32px;
    background-image: url('../img/gray_box_flip.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    font-family: "Imbue", serif;
    font-weight: lighter;
    font-size: 2rem;
}

.buy-btn:hover {
    font-style: italic;
}

.clink-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: var(--regular_text);
    gap: 4px;
    padding: 16px 32px;
    background-image: url('../img/green_square.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.clink-glasses {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: clamp(70px, 6vw, 115px);
}

.glass {
    height: clamp(150px, 13vw, 250px);
    width: auto;
    transform-origin: bottom center;
    transition: transform 0.08s ease;
}

.clink-star {
    position: absolute;
    width: clamp(14px, 2.5vw, 24px);
    height: auto;
    opacity: 0;
    transition: opacity 0.08s ease;
    pointer-events: none;
}

.clink-glasses, .clink-glasses * {
    pointer-events: none;
}

.star-1 { top: 10%; left: -10%; }
.star-2 { top: -15%; right: 15%; }
.star-3 { top: 15%; right: -12%; }

@media (hover: hover) {
    .clink-btn:hover .glass-left { transform: rotate(25deg); }
    .clink-btn:hover .glass-right { transform: rotate(-25deg); }
    .clink-btn:hover .clink-star { opacity: 1; }
    .clink-btn:hover .clink-label { font-style: italic; }
}

.clink-btn:active .glass-left,
.clink-btn.clinking .glass-left {
    transform: rotate(25deg);
}

.clink-btn:active .glass-right,
.clink-btn.clinking .glass-right {
    transform: rotate(-25deg);
}

.clink-btn:active .clink-star,
.clink-btn.clinking .clink-star {
    opacity: 1;
}

.clink-btn:active .clink-label,
.clink-btn.clinking .clink-label {
    font-style: italic;
}

.clink-label {
    display: inline-block;
    font-family: "Imbue", serif;
    font-weight: lighter;
    font-size: 2rem;
    color: var(--regular_text);
    transition: color 0.05s ease;
}

.clink-btn.clinking .clink-label {
    font-style: italic;
}

.social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 5px;
}

.social-link {
    font-family: "Imbue", serif;
    font-size: clamp(15px, 2.5vw, 30px);
    font-weight: 300;
    text-decoration: none;
    color: var(--regular_text);
    padding: 6px 14px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    white-space: nowrap;
}

@media (min-width: 750px) {
    .buttons {
        justify-content: center;
    }
    .clink-label {
        font-size: 3rem;
    }
    .buy-btn {
        font-size: 3rem;
    }
}

@media (max-width: 749px) {
    .buttons {
        transform: translateY(-60px);
    }
}

@media (max-width: 495px) {
    .social-row {
        gap: 4px;
    }
    .social-link {
        padding: 6px 8px;
        font-size: 15px;

    }
    .reg-dots {
        bottom: 3px;
        right: 0px;
    }

}


@media (max-width: 430px) {
    .ticker-item {
        font-size: 15px;
        padding: 6px 16px;
        gap: 5px;
    }
}

.bottom-border-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
}



.social-link--gray {
    background-image: url('../img/gray_box.png');
}

.social-link--green {
    background-image: url('../img/green_box.png');
}

.social-link:hover {
    background-image: none;
    background-color: var(--ticker_down);
    color: var(--regular_background);
    border-radius: 5px;
}
