:root {
    --bg: #0d1117;
    --bg2: #161b22;
    --text: #e6edf3;
    --accent: #5865f2;
    --green: #a51616;
    --yellow: #d29922;
    --purple: #a371f7;
    --border: #30363d;
    --muted: #8b949e;
}
body.light {
    --bg: #ffffff;
    --bg2: #f5f5f5;
    --text: #111111;
    --border: #d0d7de;
    --muted: #57606a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
header {
    background: var(--bg2);
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.back-home {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.2s;
}
.back-home:hover { opacity: 0.8; }
header h1 {
    font-size: 28px;
    font-weight: 700;
}
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, rgba(88,101,242,0.12), transparent);
}
.hero h2 {
    font-size: clamp(34px, 7vw, 48px);
    margin-bottom: 16px;
    font-weight: 700;
}
.hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 720px;
    margin: 0 auto;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    flex: 1;
}
.roadmap {
    margin: 60px 0;
}
.feature {
    background: var(--bg2);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    transition: all 0.35s cubic-bezier(.16,1,.3,1);
}
.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    border-color: var(--accent);
}
.feature-info {
    flex: 1;
    min-width: 280px;
}
.feature h3 {
    font-size: 23px;
    margin-bottom: 10px;
    color: var(--accent);
    font-weight: 600;
}
.feature p {
    opacity: 0.88;
    font-size: 16.5px;
    line-height: 1.7;
}
.status {
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.status.planned { background: #2d1b3a; color: #e0b6ff; }
.status.development { background: var(--yellow); color: #111; }
.status.beta { background: var(--purple); color: white; }
.status.released { background: var(--green); color: white; }
.votes {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
}
.heart {
    font-size: 26px;
    cursor: pointer;
    transition: all 0.25s;
    user-select: none;
}
.heart:hover { transform: scale(1.15); }
.heart.voted {
    color: #f85149 ;
    animation: pulse 0.6s ease;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.45); }
    100% { transform: scale(1); }
}
footer {
    margin-top: auto;
    background: var(--bg2);
    padding: 50px 20px 40px;
    border-top: 1px solid var(--border);
    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 32px;
}


footer .top {
    display: flex;
    justify-content: center;
    gap: 60px;
}


footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: 0.2s;
}

footer a:hover {
    text-decoration: underline;
    opacity: 0.9;
}


footer p {
    opacity: 0.8;
    font-size: 14px;
}


@media (max-width: 768px) {
    header { padding: 18px 20px; }
    header h1 { font-size: 26px; }
    .back-home { left: 20px; }
    .hero { padding: 70px 20px 50px; }
    .feature { padding: 24px; gap: 20px; }
    .feature-info { min-width: auto; }
}

@media (max-width: 480px) {
    header { padding: 16px; text-align: center; }
    .back-home {
        position: static;
        transform: none;
        display: block;
        margin-bottom: 12px;
        font-size: 15.5px;
    }
    header h1 { font-size: 24px; }
    .hero { padding: 60px 16px 40px; }
    .hero h2 { font-size: 32px; }
    .hero p { font-size: 17px; }
    .container { padding: 0 16px; }
    .roadmap { margin: 40px 0; }
    .feature {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
    }
    .status { margin: 0 auto; }
    .votes { justify-content: center; }
}