* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.home-screen {
    background: radial-gradient(circle at center, #161b22 0%, var(--bg-main) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 50px 30px;
    background-color: #0d1117;
    background-image: radial-gradient(circle at 50% 0%, #16202d 0%, #0d1117 60%), radial-gradient(#30363d 1px, transparent 1px);
    background-size: 100% 100%, 26px 26px;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #0d1117;
    background-image: radial-gradient(circle at 50% 0%, #16202d 0%, #0d1117 70%);
    color: #e6edf3;
    margin: 0; 
    padding: 20px;
}

.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    animation: fadeIn 0.8s ease-out forwards;
    max-width: 520px;
}

.hero h1 {
    font-size: 4rem;
    background: linear-gradient(to right, #5dcaa5, #a3e6cd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero .input-box {
    display: flex;
    flex-direction: column;
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #30363d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    max-width: 400px;
    -webkit-backdrop-filter: blur(16px);
    width: 100%;
    margin: 30px auto 0 auto;
    gap: 20px;
    margin-bottom: 40px;
}

.hero .input-box label {
    font-size: 14px;
    color: #6e7681;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.hero .input-box button {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    width: 100%;
    font-weight: 700;
    margin-top: 12px;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    box-shadow: 0 5px 15px rgba(29, 158, 117, 0.3);
}

.hero .input-box button:hover {
    box-shadow: 0 10px 20px rgba(90, 200, 160, 0.5);
}

.hero-tag {
    color: #5dcaa5;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(140deg, #e6edf3 30%, #5dcaa5 100%);
    background-clip: border-box;
    color: transparent;
}

.hero-subtitle {
    color: #9ca3af;
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.5;
}

.hero-description {
    color: #6e7681;
    margin-top: 18px;
    line-height: 1.7;
    font-size: 14px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
    animation: fadeIn 0.6s ease-out forwards;
}

.dashboard-section {
    background: #161b22;
    border: 1px solid rgba(48, 54, 61, 0.5);
    border-radius: 12px;
    padding: 30px;
}

.dashboard-section h2 {
    margin-bottom: 20px !important;
}

.full-width{
    grid-column: 1/3;
}

.age {
    max-width: min(1200px, 95%);
    margin: 60px auto;
    width: 90%;
    background: #161b22;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 1px solid #30363d;
}

h1 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #e6edf3;
}

h1::before {
    content: "> ";
    color: #5dcaa5;
}

.section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5dcaa5;
    margin-top: 25px;
    margin-bottom: 10px;
}

.input-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, button {
    padding: 10px;
    font-size: 16px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

input {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    color: #e6edf3;
}

input:focus {
    outline: none;
    border-color: #5dcaa5;
}

button {
    cursor: pointer;
    padding: 15px;
    border: 1px solid #1d9e75;
    border-radius: 6px;
    font-size: 15px;
    background: #1d9e75;
    color: #04342c;
    transition: 0.2s;
}

button:hover {
    transform: translateY(-2px);
    background: #5dcaa5;
}

.age-box {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #30363d;
}

.age-box h2 {
    margin-bottom: 8px;
}

.age-box h3 {
    margin-top: 10px;
}

#cards {
    display: flex;
    justify-content: center;
    gap: 10x;
    margin-top: 10px;
}

.card {
    background: #0d1117;
    padding: 15px;
    width: 130px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #30363d;
}

.card h2 {
    font-size: 25px;
    color: #e6edf3;
    font-weight: 400;
}

.card p {
    font-size: 12px;
    color: #6e7681;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

#statistics {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.stats {
    flex: 1;
    padding: 18px;
    border-radius: 6px;
    border: 1px solid #30363d;
}

.stats h3 {
    font-size: 12px;
    color: #6e7681;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.stats p {
    font-size: 20px;
    color: #5dcaa5;
    margin-top: 5px;
}

#info {
    margin-top: 12px;
}

.facts-container {
    display: flex;
    gap: 18px;
    margin-top: 18px;
}

.fact-card {
    flex: 1;
    background: #0d1117;
    padding: 18px;
    border-radius: 6px;
    border: 1px solid #30363d;
}

.fact-card h3 {
    font-size: 10px;
    color: #6e7681;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.fact-card p {
    font-size: 16px;
    color: #e6edf3;
    margin-top: 8px;
}

.progress-span {
    margin-top: 16px;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 16px;
}

.progress-track {
    width: 100%;
    height: 14px;
    background: #21262d;
    border-radius: 999px;
    margin-top: 14px;
    overflow: hidden;
}

.progress-life {
    height: 100%;
    background: #5dcaa5;
    border-radius: 999px;
    transition: width 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    to {
        background-position: 200% center;
    }
}

input[type="date"] {
    width: 100%;
    padding: 14px 16px;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 8px;
    color: #e6edf3;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    color-scheme: dark;
}

input[type="date"]:focus {
    border-color: #5dcaa5;
    box-shadow: 0 0 0 3px rgba(93, 202, 165, 0.15);
    outline: none;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.val {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #5dcaa5;
}

.label {
    font-size: 11px;
    color: #6e7681;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.divider {
    width: 1px;
    height: 32px;
    background: #30363d;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    position: relative;
    padding: 20px;
    padding: 20px 0;
}

.timeline-container::before {
    position: absolute;
    content: '';
    top: 30px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: #30363d;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
    background: #161b22; 
    padding: 0 20px;
    opacity: 0.5;
    transition: 0.1s;
}

.timeline-item.achieved {
    opacity: 1;
}

.timeline-dot {
    width: 24px !important;
    height: 24px !important;
    background: #0d1117;
    border: 3px solid #6e7681;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    transition: 0.1s;
}

.timeline-item.achieved .timeline-dot {
    background: #5dcaa5;
    border-color: #5dcaa5;
    box-shadow: 0 0 18px rgba(93, 202, 165, 0.6);
}

.timeline-content h3 {
    font-size: 15px;
    color: #e6edf3;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.timeline-content p {
    font-size: 14px;
    color: #8b949e;
    font-family: 'Inter', sans-serif;
}

button#button {
    transition: transform 0.2s;
}

button#button:active {
    transform: scale(0.99);
}

.sleek-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px !important;
}

.sleek-item {
    background: rgba(22, 27, 34, 0.4);
    border: 1px solid rgba(48, 54, 61, 0.5);
    border-radius: 10px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s, border-color 0.2s;
}

.sleek-item:hover {
    border-color: #5dcaa5;
    background: rgba(30, 36, 44, 0.6);
}

.sleek-item h3 {
    font-size: 13px;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.sleek-item p {
    font-size: 17px;
    color: #e6edf3;
    line-height: 1.6;
}