/* RupeeGames Installer Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --primary: #1B9E3E;
    --primary-hover: #22BD4C;
    --bg-main: #090C12;
    --bg-surface: #101522;
    --bg-card: #151B2B;
    --border: #1E2538;
    --muted: #8E9BAE;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body.install-body {
    background: var(--bg-main);
    color: #F8FAFC;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.installer-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.installer-header {
    text-align: center;
    margin-bottom: 28px;
}
.installer-header img {
    height: 52px;
    margin-bottom: 12px;
}
.installer-header h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.installer-header p {
    color: var(--muted);
    font-size: 0.88rem;
}

.steps-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--muted);
    position: relative;
}
.step-circle.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(27,158,62,0.1);
}
.step-circle.completed {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}
.step-circle + .step-circle::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--border);
    margin-right: 0;
}
.step-circle.completed + .step-circle::before,
.step-circle.active + .step-circle::before {
    background: var(--primary);
}

.req-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: #CBD5E1;
}
.req-status-ok  { color: #22BD4C; font-weight: 700; }
.req-status-fail { color: #EF4444; font-weight: 700; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
textarea, select {
    box-sizing: border-box;
}
button[type="submit"]:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
