
:root { --primary: #1a1a1a; --bg: #ffffff; --surface: #f8f9fa; --border: #e9ecef; --radius: 12px; --shadow: 0 4px 20px rgba(0,0,0,0.06); --accent: #ff4757; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", system-ui, sans-serif; background: var(--bg); color: var(--primary); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 0; background: rgba(255,255,255,0.98); position: relative; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; letter-spacing: -1px; color: var(--primary); }
nav a { margin-left: 20px; font-weight: 600; font-size: 14px; transition: color 0.2s; }
nav a:hover { color: var(--accent); }
.hero { background: var(--surface); padding: 80px 0; text-align: center; border-bottom: 1px solid var(--border); margin-bottom: 60px; }
.hero h1 { font-size: 48px; font-weight: 900; margin-bottom: 20px; letter-spacing: -2px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; align-items: start; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; height: fit-content; }
.card:hover { transform: translateY(-5px); }
.card img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; background-color: var(--surface); }
.card-body { padding: 20px; }
.card-title { font-size: 16px; margin-bottom: 15px; font-weight: 700; line-height: 1.3; }
.btn { display: inline-block; padding: 14px 28px; background: var(--primary); color: #fff; border-radius: var(--radius); font-weight: 700; font-size: 18px; text-align: center; cursor: pointer; border: none; width: 100%; transition: all 0.3s; animation: pulse 3s infinite ease-in-out; }
.btn:hover { background: #333; transform: scale(1.02); }
.btn-accent { background: var(--accent); color: white; }
.ad-container { margin: 30px 0; text-align: center; background: var(--surface); border-radius: var(--radius); padding: 15px; border: 1px solid var(--border); }
.ad-label { font-size: 10px; color: #999; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; align-items: start; }
.gallery-grid img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: var(--radius); display: block; cursor: zoom-in; background-color: var(--surface); }
.content-area { max-width: 800px; margin: 0 auto; padding: 20px 0; }
.content-area h1 { font-size: 38px; font-weight: 800; line-height: 1.2; margin: 30px 0; text-align: center; }
.content-area p { margin-bottom: 24px; font-size: 17px; color: #333; line-height: 1.8; }
.post-img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: var(--radius); margin: 30px auto; display: block; box-shadow: var(--shadow); cursor: zoom-in; background-color: var(--surface); }
.related-title { font-size: 26px; font-weight: 800; text-align: center; margin: 60px 0 30px; border-top: 1px solid var(--border); padding-top: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.stylish-divider { height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); margin: 60px 0; position: relative; }
.stylish-divider::after { content: '◈'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: #fff; padding: 0 15px; color: var(--accent); font-size: 18px; }
.timer-container { text-align: center; margin: 40px 0; padding: 30px; background: var(--surface); border-radius: var(--radius); }
.timer-text { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
footer { background: var(--primary); color: #fff; padding: 60px 0 40px; margin-top: 100px; text-align: center; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-bottom: 30px; }
.footer-links a { font-size: 14px; font-weight: 600; color: #ccc; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-text { font-size: 13px; color: #888; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.scroll-indicator { color: var(--accent); font-weight: 700; margin-top: 15px; display: none; text-align: center; animation: bounce 2s infinite; font-size: 16px; }

/* Lightbox */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 1000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; cursor: zoom-out; }
.lightbox.active { display: flex; opacity: 1; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 4px; border: 3px solid #fff; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; }

@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} }
@media (max-width: 768px) { h1 { font-size: 28px !important; } .related-grid { grid-template-columns: 1fr; } .hero h1 { font-size: 32px !important; } .footer-links { flex-direction: column; gap: 15px; } }
