:root {
    --bg-color: #0d1117;
    --text-color: #c9d1d9;
    --accent-color: #58a6ff;
    --secondary-bg: #161b22;
    --border-color: #30363d;
    --success-color: #238636;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0 50px;
    text-align: center;
    margin-top: 40px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    margin-bottom: 20px;
    object-fit: cover;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #58a6ff, #a371f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    color: #8b949e;
    font-size: 1.2rem;
}

main {
    padding: 60px 0 40px;
}

section:first-of-type {
    margin-top: 20px;
}

section {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
}

h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

h3 {
    color: #8b949e;
    font-size: 1.1rem;
    margin-bottom: 12px;
    margin-top: 20px;
}

p {
    margin-bottom: 12px;
}

/* Daily Update Section */
.daily-update {
    border-left: 4px solid var(--success-color);
}

.daily-update h2 {
    color: var(--success-color);
}

/* Good News & Unusual Articles */
.good-news {
    border-left: 4px solid #f0883e;
}

.good-news h2 {
    color: #f0883e;
}

.unusual-articles {
    border-left: 4px solid #a371f7;
}

.unusual-articles h2 {
    color: #a371f7;
}

.news-item, .article-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child, .article-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-item h3, .article-item h3 {
    margin-bottom: 8px;
}

.news-item h3 a, .article-item h3 a {
    color: var(--accent-color);
    text-decoration: none;
}

.news-item h3 a:hover, .article-item h3 a:hover {
    text-decoration: underline;
}

.news-item p, .article-item p {
    color: #8b949e;
    margin-bottom: 8px;
}

.source {
    font-size: 0.85rem;
    color: #6e7681;
    font-style: italic;
}

/* Support / Wallets */
.support {
    border-left: 4px solid #ffd700;
}

.support h2 {
    color: #ffd700;
}

.wallets {
    margin-top: 20px;
}

.wallet {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
}

.wallet:last-child {
    margin-bottom: 0;
}

.crypto {
    display: block;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.address {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #c9d1d9;
    word-break: break-all;
    background: var(--secondary-bg);
    padding: 8px;
    border-radius: 4px;
}

/* About Name Section */
.about-name {
    border-left: 4px solid #a371f7;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, rgba(163, 113, 247, 0.1) 100%);
}

.about-name h2 {
    color: #a371f7;
}

.about-name ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-name li {
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-name li:last-child {
    border-bottom: none;
}

.about-name li strong {
    color: var(--accent-color);
}

.name-origin {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-color);
    border-radius: 8px;
    border-left: 3px solid #a371f7;
    font-style: italic;
}

/* Three Pillars */
.three-pillars {
    border-left: 4px solid #3fb950;
}

.three-pillars h2 {
    color: #3fb950;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pillar {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
}

.pillar h3 {
    color: var(--accent-color);
    margin-bottom: 8px;
    margin-top: 0;
}

.pillar > p {
    color: #8b949e;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pillar ul {
    list-style: none;
    padding: 0;
}

.pillar li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.pillar li:last-child {
    border-bottom: none;
}

@media (max-width: 600px) {
    .pillars {
        grid-template-columns: 1fr;
    }
}

.weather, .year-progress, .fun-fact {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.weather:last-child, .year-progress:last-child, .fun-fact:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.progress-bar {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    height: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    background: linear-gradient(90deg, #238636, #2ea043);
    height: 100%;
    transition: width 0.3s ease;
}

.fun-fact p {
    font-style: italic;
    color: #c9d1d9;
}

/* Capabilities */
ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

li:last-child {
    border-bottom: none;
}

/* Tech Stack Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Contact */
.email-protected {
    background: var(--bg-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
}

small {
    color: #6e7681;
    font-size: 0.85rem;
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    color: #8b949e;
    font-size: 0.9rem;
}

.timestamp {
    margin-top: 10px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 20px;
    }
    
    .tags {
        gap: 8px;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}
