/*
Theme Name: CODEUS Auto Theme
Author: CODEUS
Version: 1.0
*/

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #050816;
    color: #e5e7eb;
}

a { color: #22c55e; text-decoration: none; }
a:hover { text-decoration: underline; }

.codeus-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.codeus-hero {
    padding: 60px 8vw 40px;
    background: radial-gradient(circle at top left, #22c55e 0, #050816 45%);
    color: #f9fafb;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 32px;
    align-items: center;
}

.codeus-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.codeus-hero-sub {
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.codeus-hero-image {
    justify-self: end;
}

.codeus-hero-image img {
    max-width: 360px;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
}

.codeus-grid {
    padding: 40px 8vw 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.codeus-card {
    background: #0b1120;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 18px 18px 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.65);
}

.codeus-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 8px;
}

.codeus-card-body {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #9ca3af;
}

.codeus-card-buttons {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.codeus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(34, 197, 94, 0.6);
    color: #22c55e;
}

.codeus-footer {
    padding: 18px 8vw 24px;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
