@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --secondary: #ec4899;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --accent: #facc15;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 40px 20px 60px;
    text-align: center;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.025em;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.prize-banner {
    background: white;
    max-width: 600px;
    margin: -30px auto 30px;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--accent);
    position: relative;
    z-index: 10;
}

.prize-banner strong {
    font-size: 1.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.log-section {
    margin-top: 60px;
    background: #1e293b;
    border-radius: 24px;
    padding: 40px;
    color: #e2e8f0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #334155;
    padding-bottom: 10px;
}

.log-container {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.9rem;
    height: 200px;
    overflow-y: auto;
}

.log-entry {
    margin-bottom: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    gap: 10px;
}

.log-entry:hover {
    background: #334155;
}

.time {
    color: #94a3b8;
}

.user {
    color: #38bdf8;
    font-weight: 600;
}

.action {
    color: #f1f5f9;
}

.status-OK {
    color: #4ade80;
}

.status-FAIL {
    color: #f87171;
}

.status-WARN {
    color: #fbbf24;
}

.status-INFO {
    color: #38bdf8;
}

.status-ALERT {
    color: #ec4899;
}

.footer {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Hidden link style */
.secret-trigger {
    color: transparent;
    cursor: default;
    user-select: none;
    text-decoration: none;
}

.secret-trigger:hover {
    color: #cbd5e1;
}