

.op-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.op-container-narrow {
    max-width: 640px;
}



.op-logo { display: flex; align-items: center; text-decoration: none; }
.op-logo-img { height: 36px; width: auto; }


/* ——— Buttons ——— */
.op-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.op-btn-primary {
    background: var(--primary);
    color: white;
}

.op-btn-primary:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.op-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.op-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border);
}

.op-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.op-btn-discord {
    background: var(--discord);
    color: white;
}

.op-btn-discord:hover {
    background: #4752c4;
    transform: translateY(-1px);
}

.op-btn-lg { padding: 14px 28px; font-size: 1rem; }
.op-btn-sm { padding: 8px 14px; font-size: 0.8rem; }
.op-btn-block { width: 100%; }

/* ——— Alerts ——— */
.op-alert {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    font-size: 0.9rem;
    animation: op-fadeIn 0.3s ease;
}

.op-alert-success { background: var(--success); color: white; }
.op-alert-error { background: #ef4444; color: white; }

@keyframes op-fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ——— Hero ——— */
.op-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.op-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(139, 92, 246, 0.12), transparent 60%);
    pointer-events: none;
}

.op-hero-inner {
    position: relative;
    z-index: 1;
}

/* ——— Nav logo shine (from time to time) ——— */
.op-logo-shine {
    position: relative;
}
.op-logo-shine::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 12px;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.4) 50%, transparent 65%);
    background-size: 200% 100%;
    background-position: 150% 0;
    opacity: 0;
    pointer-events: none;
    animation: op-logo-shine 8s ease-in-out infinite;
}
@keyframes op-logo-shine {
    0%, 70%, 100% { background-position: 150% 0; opacity: 0; }
    72% { opacity: 0.8; }
    78% { background-position: -50% 0; opacity: 0.8; }
    85%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .op-logo-shine::after { animation: none; }
}


/* ——— IP box ——— */
.op-ip-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 32px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 24px;
}

.op-ip-box:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.06);
}

.op-ip-box code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
}

.op-ip-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.op-ip-box.copied code { color: var(--success); }
.op-ip-box.copied .op-ip-hint::after { content: ' — Copié !'; color: var(--success); }

/* ——— Steps ——— */
.op-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.op-step {
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.op-step-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ——— Timeline / Roadmap ——— */
.op-timeline-wrap {
    overflow-x: auto;
    padding-bottom: 16px;
}

.op-timeline {
    display: flex;
    gap: 16px;
    min-width: max-content;
    justify-content: center;
    padding: 0 16px;
}

.op-phase {
    flex: 0 0 200px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.op-phase-head {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.op-phase-version {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
}

.op-phase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.op-phase-dot-alpha { background: #3b82f6; }
.op-phase-dot-beta { background: #06b6d4; }
.op-phase-dot-release { background: var(--primary); }

.op-phase-body {
    padding: 16px;
}

.op-phase-body ul {
    list-style: none;
}

.op-phase-body li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.op-phase-body li:last-child { border-bottom: none; }
.op-phase-body li.highlight { color: var(--text); font-weight: 500; }

/* ——— Vote ——— */
.op-coins-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 14px 20px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius);
    color: #f59e0b;
}

.op-vote-sites {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.op-vote-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.2s;
}

.op-vote-card:hover {
    border-color: var(--primary);
}

.op-vote-name { flex: 1; font-weight: 500; }
.op-vote-reward { color: #f59e0b; font-size: 0.9rem; }
.op-vote-card i { color: var(--text-muted); font-size: 0.8rem; }

/* ——— Shop ——— */
.op-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.op-shop-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s;
}

.op-shop-card:hover {
    border-color: var(--primary);
}

.op-shop-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.op-shop-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.op-shop-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    min-height: 2.4em;
}

.op-shop-price {
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 14px;
    font-size: 1rem;
}

/* ——— Notice ——— */
.op-notice {
    text-align: center;
    padding: 40px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
}

.op-notice i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.op-notice p { margin-bottom: 16px; }
.op-empty { text-align: center; color: var(--text-muted); padding: 40px 0; }

/* ——— Staff ——— */
.op-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.op-staff-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s;
}

.op-staff-card:hover {
    border-color: var(--primary);
}

.op-staff-skin {
    margin-bottom: 12px;
}

.op-staff-skin img {
    width: 80px;
    height: auto;
    border-radius: 8px;
}

.op-staff-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.op-staff-role {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

/* ——— CTA ——— */
.op-cta {
    text-align: center;
    padding: 100px 0;
}

.op-cta .op-btn { margin-top: 8px; }

