:root {
    --primary: #FFD200;
    /* Vibrant Yellow */
    --secondary: #000000;
    --accent-pink: #FFB7B7;
    --bg-light: #FDFDFD;
    --border: 3px solid #000000;
    --shadow: 6px 6px 0px #000000;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #fff;
    color: #000;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.1s;
}

/* Header Sections */
.header {
    display: flex;
    align-items: center;
    border-bottom: var(--border);
    height: 80px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-box {
    background-color: var(--primary);
    height: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    border-right: var(--border);
}

.logo-text {
    font-weight: 950;
    font-size: 28px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.nav-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
}

.header-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.btn-auth {
    height: 100%;
    background-color: var(--accent-pink);
    border-left: var(--border);
    padding: 0 35px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
}

/* Home Page Sections */
.section-yellow {
    background-color: var(--primary);
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 60px 0;
}

.section-black {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Cards */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.hero-card {
    border: var(--border);
    border-radius: var(--radius);
    padding: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    position: relative;
}

.hero-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border: var(--border);
    border-radius: 8px;
    margin-bottom: 20px;
}

.hero-tag {
    position: absolute;
    top: 40px;
    left: 40px;
    background: #fff;
    border: var(--border);
    padding: 5px 15px;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 4px;
}

.hero-title {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
}

/* Popular Tags Scroll */
.tags-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.tag-pill {
    background: #fff;
    border: var(--border);
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 4px 4px 0 #000;
    white-space: nowrap;
}

.tag-pill img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #000;
}

/* Who Am I Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-img-frame {
    position: relative;
    border: var(--border);
    border-radius: 200px 200px 0 0;
    overflow: hidden;
}

.about-img-frame img {
    width: 100%;
    display: block;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 950;
    margin-bottom: 20px;
}

.btn-learn-more {
    font-weight: 900;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* CTA */
.btn-cta {
    border: 2px solid #fff;
    padding: 15px 40px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin: 20px 0;
}

/* Sidebar Widgets on Other Pages */
.sidebar-widget {
    border: var(--border);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 35px;
    background: #fff;
    box-shadow: var(--shadow);
}

.widget-title {
    background: var(--primary);
    border-bottom: var(--border);
    margin: -30px -30px 25px -30px;
    padding: 12px 30px;
    font-weight: 950;
    text-transform: uppercase;
    font-size: 15px;
}

/* Footer Neubrutalist */
.footer {
    border-top: var(--border);
    padding: 60px 0;
    background: #fff;
}

.newsletter-footer {
    background: #000;
    color: #fff;
    padding: 50px;
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.input-footer {
    padding: 15px 25px;
    border-radius: 4px;
    border: none;
    width: 300px;
    font-weight: 700;
}

.btn-yellow {
    background: var(--primary);
    border: var(--border);
    padding: 12px 25px;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 4px 4px 0px #000;
}

/* Content Area */
.main-content-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    padding-top: 60px;
}

[available=main] .main-content-layout {
    display: block;
    /* Home is full width sections */
}

/* Lang Switcher */
.lang-switcher-wrap {
    display: flex;
    background: #fff;
    border: var(--border);
    border-radius: 8px;
    padding: 2px;
}

.lang-node .current {
    background: var(--primary);
    padding: 5px 12px;
    font-weight: 900;
}