@font-face {
    font-family: 'AngryFont';
    src: url('./public/AngryFontNew-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'YouMurderer';
    src: url('./public/most-hated-font-collection/youmurderer-bb-6952/Youmurdererbb-pwoK.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'AngryFont', 'YouMurderer', 'Space Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
}

.bio-pane {
    width: 700px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 1px solid #222;
    flex-shrink: 0;
    background: #000;
}


.game-pane {
    flex-grow: 1;
    background-color: #000;
}

.logo {
    position: relative;
    display: inline-block;
}

.logo img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 8px solid transparent;
    background: linear-gradient(45deg, #ff4b2b, #ff8e53) border-box;
    border-radius: 50%;
}

.logo::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: conic-gradient(
        from 0deg,
        #ff4b2b 0deg,
        #ff6b4a 45deg,
        #ff8e53 90deg,
        #ffaa66 135deg,
        #ff4b2b 180deg,
        #c23616 225deg,
        #ff4b2b 270deg,
        #ff6b4a 315deg,
        #ff4b2b 360deg
    );
    border-radius: 50%;
    z-index: 1;
    animation: lavaRotate 4s linear infinite;
}

.logo::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(
        circle at 50% 50%,
        transparent 45%,
        #ff4b2b 50%,
        #ff8e53 55%,
        transparent 60%
    );
    border-radius: 50%;
    z-index: 0;
    animation: lavaGlow 2s ease-in-out infinite alternate;
}

@keyframes lavaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes lavaGlow {
    0% {
        box-shadow:
            0 0 20px #ff4b2b,
            0 0 40px #ff4b2b,
            inset 0 0 20px #ff4b2b;
    }
    100% {
        box-shadow:
            0 0 30px #ff8e53,
            0 0 60px #ff6b4a,
            inset 0 0 30px #ff8e53;
    }
}

h1 {
    font-family: 'AngryFont', 'YouMurderer', 'Nosifier', sans-serif;
    font-size: 4em;
    margin: 20px 0 10px 0;
    color: #ff4b2b;
    letter-spacing: 0.1em;
}

.contract-address {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 1.75em;
}

#contract-address-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    padding: 10px;
    border-radius: 5px;
}

#contract-address-text {
    font-family: 'Inconsolata', monospace;
    font-size: 0.9em;
    word-break: break-all;
    cursor: pointer;
}

#copy-button {
    background: #ff4b2b;
    color: #0a0a0a;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.button {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3em;
    letter-spacing: 0.05em;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #ff4b2b;
    box-shadow: 0 0 10px #ff4b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.button-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: opacity 0.3s;
}

.button:hover {
    background-color: #ff4b2b;
    color: #0a0a0a;
    box-shadow: 0 0 20px #ff4b2b;
    transform: scale(1.05);
}

.button:hover .button-icon {
    opacity: 0.9;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}
