/* Global Styles */
:root {
    --primary-black: #000000;
    --primary-gold: #FFD700;
    --neon-pink: #FF1493;
    --neon-blue: #00FFFF;
    --text-color: #FFFFFF;
}

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

body {
    font-family: 'Anton', Impact, sans-serif;
    background-color: var(--primary-black);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Token Bar */
.token-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-black), #1a1a1a);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    border-bottom: 2px solid var(--primary-gold);
}

.token-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    width: 100%;
    justify-content: center;
}

.token-label {
    color: var(--neon-pink);
    font-size: 1rem;
    white-space: nowrap;
}

.token-value {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    color: var(--primary-gold);
    font-family: monospace;
    font-size: 0.9rem;
    flex-grow: 1;
    max-width: 400px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    user-select: all;
    text-align: center;
    position: relative;
}

.token-value:hover {
    background: rgba(255, 215, 0, 0.2);
}

.token-value::after {
    content: "Click to copy";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-color);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    white-space: nowrap;
}

.token-value:hover::after {
    opacity: 1;
}

.token-status {
    color: var(--neon-blue);
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 4px;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

/* Hero Section */
.hero-section {
    margin-top: 60px; /* Add space for the token bar */
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(45deg, var(--primary-black), #1a1a1a);
    overflow: hidden;
}

.hero-content {
    z-index: 1;
    padding: 2rem;
}

.main-title {
    font-size: 4rem;
    color: var(--primary-gold);
    text-shadow: 0 0 10px var(--neon-pink);
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.quote-container {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin: 2rem 0;
    padding: 1rem;
    border: 2px solid var(--primary-gold);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
}

.kanye-head-container {
    width: 300px;
    height: 300px;
    margin: 2rem auto;
    position: relative;
    cursor: pointer;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
    background: transparent;
}

.kanye-svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 11;
    border-radius: 50%;
    object-fit: cover;
}

.kanye-svg:hover {
    transform: scale(1.05);
}

/* Make sure SVG elements inherit colors properly */
.kanye-svg path,
.kanye-svg circle,
.kanye-svg rect {
    vector-effect: non-scaling-stroke;
}

/* Add debug outline to see container boundaries */
.kanye-svg * {
    transform-box: fill-box;
    transform-origin: center center;
}

/* Price Ticker Section */
.ticker-section {
    padding: 4rem 2rem;
    background: linear-gradient(-45deg, var(--primary-black), #1a1a1a);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    min-width: 200px;
    margin: 1rem;
}

.stat h3 {
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

#price-chart {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Game Section */
.game-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-black), #1a1a1a);
}

.game-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.game-quote {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--neon-blue);
}

.game-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-family: inherit;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
    background: var(--primary-gold);
    color: var(--primary-black);
}

button:hover {
    transform: scale(1.05);
}

.game-result {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: var(--neon-pink);
}

/* Music Player */
.music-player {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}

.beat-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gold);
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--neon-pink);
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--neon-pink);
    }
    to {
        text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-blue);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .game-buttons {
        flex-direction: column;
        align-items: center;
    }

    .beat-switch {
        padding: 0.8rem;
    }
} 