
:root {
    --primary: #D3B138;
    --background: #0a0a0a;
    --text: #ffffff;
    --muted: #71717a;
    --accent: #D3B138;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
}

.content {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.coin-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 4px solid var(--accent);
    padding: 4px;
    background: var(--background);
    transition: transform 0.3s ease;
}

.coin-image:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    color: transparent;
}

.status {
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.message {
    color: var(--muted);
    margin-bottom: 2rem;
}

.message p {
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
        opacity: 1;
    }
    50% {
        width: 100%;
        opacity: 0.5;
    }
    100% {
        width: 0%;
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }

    .content {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .status {
        font-size: 1rem;
    }

    .coin-image {
        width: 120px;
        height: 120px;
    }
}