@font-face {
    font-family: 'South Park';
    src: url('south park.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

#custom-cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    background-image: url('hankyreal.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

:root {
    --red-color: #dc2626;
    --black-color: #000000;
    --text-color: #1a1a1a;
    --bg-color: #ffffff;
    --light-bg: #fafafa;
}

body {
    font-family: 'South Park', sans-serif;
    background: url('../backround.png') center center / cover no-repeat fixed;
    min-height: 100vh;
    color: var(--text-color);
    line-height: 1.6;
    cursor: none;
}

header {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.header-logos {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.logo-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.logo-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.pumpfun-link {
    width: auto;
    padding: 0 1rem;
    min-width: 100px;
}

.pumpfun-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: 'South Park', sans-serif;
}

header h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.greeting {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem 2rem;
}

.hanky-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.chat-bubble-wrapper {
    position: relative;
    flex: 0 1 auto;
    overflow: visible;
    min-width: fit-content;
}

.chat-bubble {
    position: relative;
    background: #ffffff;
    padding: 2rem 3.5rem;
    border-radius: 50px 50px 50px 20px;
    font-size: 2rem;
    font-weight: 600;
    color: var(--black-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 
                0 2px 4px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 10;
    white-space: nowrap;
    font-family: 'South Park', sans-serif;
    margin-left: 20%;
    margin-top: -20%;
    display: inline-block;
    line-height: 1.2;
    overflow: visible;
    min-width: fit-content;
    width: auto;
    letter-spacing: 0.05em;
}

/* White dots trailing from the chat bubble */
.chat-bubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 40px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 60px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Additional dots using wrapper */
.chat-bubble-wrapper::before {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 80px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 9;
}

.chat-bubble-wrapper::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 100px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 9;
}



.greeting h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--red-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.music-player {
    padding: 2.5rem;
    background: var(--bg-color);
    border: 2px solid var(--black-color);
    text-align: center;
}

.music-player h3 {
    font-size: 1.25rem;
    color: var(--black-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.music-player audio {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

.video-player {
    padding: 1.5rem;
    background: var(--bg-color);
    border: 2px solid var(--black-color);
    text-align: center;
    flex: 0 1 400px;
    margin-left: calc(29rem + 752.5px);
}

.video-player h3 {
    font-size: 1.25rem;
    color: var(--black-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.video-player video {
    width: 400px;
    height: 300px;
    margin: 0 auto;
    display: block;
    border: 2px solid var(--black-color);
    background: #000;
    object-fit: cover;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border: 2px solid var(--black-color);
    transition: transform 0.2s ease;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
}

.image-gallery img:hover {
    transform: scale(1.02);
}

.placeholder {
    padding: 2rem;
    text-align: center;
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
}

.poopsplat {
    position: fixed;
    pointer-events: none;
    z-index: 50;
    max-width: 150px;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

.contract-address-section {
    margin-top: -6rem;
    padding: 0.5rem 0;
}

.contract-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-color);
    border: 2px solid var(--black-color);
    border-radius: 8px;
}

.contract-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 1rem;
    font-family: 'South Park', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contract-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.contract-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: 'South Park', sans-serif;
    border: 2px solid var(--black-color);
    background: #ffffff;
    color: var(--black-color);
    border-radius: 4px;
    outline: none;
}

.contract-input:focus {
    border-color: var(--red-color);
}

.clipboard-btn {
    padding: 1rem;
    background: var(--black-color);
    border: 2px solid var(--black-color);
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 50px;
    height: 50px;
}

.clipboard-btn:hover {
    background: var(--red-color);
    border-color: var(--red-color);
    transform: scale(1.05);
}

.clipboard-btn:active {
    transform: scale(0.95);
}

.clipboard-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .header-logos {
        right: 0.5rem;
        gap: 0.5rem;
    }

    .logo-link {
        width: 35px;
        height: 35px;
    }

    .logo-icon {
        width: 18px;
        height: 18px;
    }

    .pumpfun-link {
        min-width: 80px;
        padding: 0 0.75rem;
    }

    .pumpfun-text {
        font-size: 0.65rem;
    }

    header h1 {
        margin: 0.5rem 0;
        padding-right: 120px;
    }

    main {
        padding: 2rem 1rem;
    }

    .greeting {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .hanky-video-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .chat-bubble {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
        margin-left: 15%;
    }


    .video-player {
        padding: 1.5rem;
        flex: 0 1 auto;
    }

    .video-player video {
        max-width: 100%;
    }

    .music-player {
        padding: 2rem 1.5rem;
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .contract-box {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .contract-label {
        font-size: 1rem;
    }

    .contract-input {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .clipboard-btn {
        min-width: 45px;
        height: 45px;
        padding: 0.75rem;
    }
}

