:root {
    --t-bg: #fdfdfd;
    --t-card: #ffffff;
    --t-border: #eeeeee;
    --t-prime: #e6b422;
    --t-text: #111111;
}
body { 
    margin: 0; background: var(--t-bg); color: var(--t-text); 
    font-family: 'Inter', -apple-system, sans-serif; -webkit-font-smoothing: antialiased; 
}
.theme-header { 
    position: fixed; top: 0; width: 100%; height: 64px; 
    background: #fdfdfd; backdrop-filter: blur(20px); z-index: 2000; border-bottom: 1px solid var(--t-border); 
}
.theme-inner { max-width: 1260px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
.theme-nav a { color: var(--t-text); text-decoration: none; font-weight: 700; font-size: 13px; margin-left: 35px; opacity: 0.5; transition: 0.3s; }
.theme-nav a:hover, .theme-nav a.active { opacity: 1; color: var(--t-prime); }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.p-card { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 32px; transition: 0.4s; overflow: hidden; display: block; text-decoration: none; color: inherit; }
.p-card:hover { border-color: var(--t-prime); transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.4); }
.p-img { width: 100%; aspect-ratio: 1.1; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.02); }
.p-img img { width: 60%; transition: 0.5s; }
.p-info { padding: 25px; border-top: 1px solid var(--t-border); }