::-webkit-scrollbar {
    display: none;
}

:root {
    --bg-color: #fdf6e3;
    --text-color: #657b83;
    --header-bg: #fff;
    --header-shadow: 0 2px 10px rgba(0,0,0,0.05);
    --accent: #dc322f;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html {
    background-color: var(--bg-color);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
}

header {
    background-color: var(--header-bg);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.5rem 2rem;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    user-select: none;
    -webkit-user-select: none;
}

.brand h1 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #333;
    margin: 0;
}

nav {
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--accent);
}

main {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero {
    margin-bottom: 4rem;
    user-select: none;
    -webkit-user-select: none;
}

.hero h2 {
    font-size: 3rem;
    line-height: 1.1;
    color: #222;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 600px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.post {
    user-select: none;
    -webkit-user-select: none;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.post:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.05);
}

.post-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 0.75rem;
}

.post h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.post p {
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    header {
        padding: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    main {
        padding: 2rem 1rem;
    }
}

.emoji-particle {
    position: absolute;
    font-size: 2rem;
    pointer-events: none;
    animation: floatUp 2s ease-out forwards;
    user-select: none;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(-10px) scale(1.2);
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

footer {
    background-color: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 4rem 2rem;
    margin-top: auto;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: #888;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--accent);
    text-decoration: underline;
}

