@font-face {
    font-family: 'Mojangles';
    src: url('https://www.dafontfree.net/data/10/0/114/Mojangles.ttf') format('truetype');
}

:root {
    --bg: #1a1a1a;
    --card-bg: #2d2d2d;
    --text: #e0e0e0;
    --minecoin: #FFB93F;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 2rem;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.code {
    font-size: 1.8em;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.example {
    margin-top: 0.8rem;
    padding: 0.5rem;
    border-radius: 6px;
    background: rgba(0,0,0,0.3);
}

.disclaimer {
    background: #ff4444;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.copy-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: none;
}

.symbol-btn {
    font-size: 3em;
    padding: 1rem 2rem;
    border-radius: 12px;
    background: var(--card-bg);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: min-content;
}

footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    color: #888;
    transition: 0.3s;
}

footer a {
    color: #888;
    text-decoration: none;
}

footer a:hover {
    color: var(--text);
    transform: translateY(-2px);
    display: inline-block;
}

@keyframes scramble {
    0% { transform: translateX(0); }
    25% { transform: translateX(2px); }
    50% { transform: translateX(-1px); }
    75% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}

.scramble-text {
    font-family: 'Mojangles', monospace;
    animation: scramble 0.1s infinite;
    letter-spacing: 2px;
}

code {
    font-family: monospace;
    background: #1a1a1a;
    padding: 2px 4px;
    border-radius: 4px;
    border: 1px solid #333;
}

.click-label {
    text-align: center;
    margin-bottom: 1rem;
    color: #aaa;
}
