@font-face {
    font-family: 'Grotesque MT Std Bold Extended';
    src: url('Grotesque MT Std Bold Extended.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    color: white;
    z-index: 3;
}

.title {
    font-family: 'Grotesque MT Std Bold Extended', 'Arial Black', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.solana-address {
    font-family: 'Monotype', 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    max-width: 300px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8),
                 0 0 8px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.disclaimer {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
}

.disclaimer p {
    font-family: 'Monotype', 'Courier New', monospace;
    font-size: 0.8rem;
   opacity: 0.5;
    padding: 8px 16px;
    max-width: 90%;
    margin: 0 auto;
}

.button-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.sound-button, .next-button, .info-button, .copy-button, .meme-button {
    background: linear-gradient(to bottom, #f0f0f0 0%, #e0e0e0 50%, #d0d0d0 100%);
    color: #000;
    border: 2px solid #808080;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
    border-radius: 3px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Tahoma', 'Arial', sans-serif;
    font-weight: bold;
    transition: all 0.1s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.8),
                inset -1px -1px 0px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}

.sound-button:hover, .next-button:hover, .info-button:hover, .copy-button:hover, .meme-button:hover {
    background: linear-gradient(to bottom, #f8f8f8 0%, #e8e8e8 50%, #d8d8d8 100%);
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
}

.sound-button:active, .next-button:active, .info-button:active, .copy-button:active, .meme-button:active {
    background: linear-gradient(to bottom, #d0d0d0 0%, #e0e0e0 50%, #f0f0f0 100%);
    border-top: 2px solid #404040;
    border-left: 2px solid #404040;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    box-shadow: inset -1px -1px 0px rgba(255, 255, 255, 0.8),
                inset 1px 1px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

.sound-icon, .next-icon, .info-icon, .copy-icon, .meme-icon {
    font-size: 1.1rem;
}

.tooltip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-family: 'Tahoma', 'Arial', sans-serif;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.tooltip.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile styles */
@media (max-width: 768px) {
    .content {
        position: absolute;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        right: auto;
        text-align: center;
        width: 90%;
    }
    
    .title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .solana-address {
        font-size: 0.8rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .button-container {
        top: 10px;
        left: 10px;
        gap: 8px;
    }
    
    .sound-button, .next-button, .info-button, .copy-button, .meme-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .sound-text, .next-text, .info-text, .copy-text, .meme-text {
        display: none;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .solana-address {
        font-size: 0.7rem;
    }
    
    .disclaimer p {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
} 