/* Article / Blog Page Styles */
:root {
  --art-bg: #0b0c10;
  --art-card: #151720;
  --art-gold: #f59e0b;
  --art-text: #ffffff;
  --art-text-muted: #9ca3af;
}

body {
  background-color: var(--art-bg);
  color: var(--art-text);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

.art-container {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  box-sizing: border-box;
  padding-bottom: 40px;
}

/* Header */
.art-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  z-index: 10;
}
.art-back-btn {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  text-decoration: none;
}

/* Hero Image */
.art-hero {
  position: relative;
  width: 100%;
  height: 250px;
  background: url('https://images.unsplash.com/photo-1639762681485-074b7f4aec63?q=80&w=1000&auto=format&fit=crop') center/cover no-repeat;
}
.art-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--art-bg), transparent);
}

/* Content */
.art-content {
  padding: 0 20px;
  position: relative;
  z-index: 2;
  margin-top: -30px;
}
.art-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  color: var(--art-gold);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.art-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.art-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--art-text-muted);
  font-size: 13px;
  margin-bottom: 24px;
}
.art-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.art-author img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.art-body {
  font-size: 15px;
  color: #d1d5db;
  line-height: 1.6;
}
.art-body h3 {
  color: white;
  font-size: 20px;
  margin: 24px 0 12px 0;
}
.art-body p {
  margin-bottom: 16px;
}
.art-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.art-body li {
  margin-bottom: 8px;
}

/* Visual Block inside article */
.art-visual {
  background: var(--art-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  text-align: center;
}
.art-visual-icon {
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
}
.art-visual h4 {
  margin: 0 0 8px 0;
  color: white;
}
.art-visual p {
  margin: 0;
  font-size: 13px;
  color: var(--art-text-muted);
}
