/* ============================================
   KAAN — UI/UX Designer Portfolio
   Dark Theme
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg:          #07070f;
    --bg-2:        #0c0c1a;
    --bg-card:     #111120;
    --bg-card-h:   #161628;
    --border:      rgba(255, 255, 255, 0.07);
    --border-h:    rgba(99, 102, 241, 0.45);
    --text:        #e2e8f0;
    --text-muted:  #8892a4;
    --accent:      #6366f1;
    --accent-2:    #8b5cf6;
    --accent-3:    #a78bfa;
    --green:       #22c55e;
    --gradient:    linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
    --shadow:      0 20px 60px rgba(99, 102, 241, 0.15);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ---- Helpers ---- */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: var(--accent-3);
    padding: 0.3rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 3rem;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 99px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(99, 102, 241, 0.55);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.full-width { width: 100%; }

/* ============================================
   LOGO (footer)
   ============================================ */

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.dot { color: var(--accent); }

/* ============================================
   BOTTOM NAV
   ============================================ */

.bottom-nav {
    position: fixed;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.4rem;
    background: rgba(11, 11, 22, 0.85);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 99px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(99, 102, 241, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    /* Prevent text from wrapping on small screens */
    white-space: nowrap;
}

.bnav-item {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.85rem;
    border-radius: 99px;
    text-decoration: none;
    color: var(--text-muted);
    transition:
        color 0.3s ease,
        background 0.35s ease,
        padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease;
}

.bnav-item:hover:not(.is-active) {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.bnav-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.bnav-item.is-active .bnav-icon {
    transform: scale(1.1);
}

.bnav-label {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 0;
    transition:
        max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease 0.05s,
        margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bnav-item.is-active {
    color: #fff;
    background: var(--gradient);
    padding: 0.6rem 1.2rem;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.45);
}

.bnav-item.is-active .bnav-label {
    max-width: 110px;
    opacity: 1;
    margin-left: 0.45rem;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem 8rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.12;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1, transparent 70%);
    top: -120px;
    right: -120px;
    animation: floatOrb 9s ease-in-out infinite;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #8b5cf6, transparent 70%);
    bottom: -80px;
    left: -100px;
    animation: floatOrb 11s ease-in-out infinite reverse;
}

.orb-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #a78bfa, transparent 70%);
    top: 50%;
    left: 40%;
    animation: floatOrb 7s ease-in-out infinite 2s;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-28px) scale(1.05); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
    text-align: center;
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.22);
    color: var(--accent-3);
    padding: 0.4rem 1.1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--green); }
    50%       { opacity: 0.5; box-shadow: 0 0 4px var(--green); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.85;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat { display: flex; flex-direction: column; align-items: center; gap: 0.1rem; }

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 38px;
    background: var(--border);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    animation: fadeIn 1s ease 1s both;
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    transform-origin: top;
    animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
    0%   { transform: scaleY(0); opacity: 1; }
    60%  { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}

/* ============================================
   ABOUT
   ============================================ */

.about { padding: 9rem 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
    align-items: center;
}

.about-image { position: relative; }

.image-placeholder {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0.04;
}

.image-ring {
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    border: 1px solid transparent;
    background: var(--gradient) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0.3;
}

.image-inner {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.4);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.9rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.floating-card-2 {
    position: absolute;
    top: -16px;
    left: -24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.9rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-icon  { font-size: 1.4rem; }
.card-title { font-weight: 600; font-size: 0.85rem; white-space: nowrap; }
.card-sub   { font-size: 0.72rem; color: var(--text-muted); }

.about-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.4rem;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.about-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.tool-tag {
    background: rgba(99, 102, 241, 0.09);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--accent-3);
    padding: 0.3rem 0.85rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
}

.tool-tag:hover {
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.4);
}

/* ============================================
   SKILLS
   ============================================ */

.skills {
    padding: 9rem 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.skill-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.skill-card:hover {
    border-color: var(--border-h);
    background: var(--bg-card-h);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.skill-card:hover::before { opacity: 1; }

.skill-icon  { font-size: 2rem; margin-bottom: 1rem; }
.skill-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.skill-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.skill-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.skill-fill {
    height: 100%;
    width: 0;
    background: var(--gradient);
    border-radius: 99px;
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-percent {
    font-size: 0.75rem;
    color: var(--accent-3);
    font-weight: 600;
}

/* ============================================
   PROJECTS
   ============================================ */

.projects { padding: 9rem 0; }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: var(--border-h);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.project-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.project-image { overflow: hidden; }

.project-card.featured .project-image { aspect-ratio: auto; min-height: 300px; }
.project-card:not(.featured) .project-image { aspect-ratio: 16 / 9; }

.project-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.project-card:hover .project-placeholder { transform: scale(1.04); }

.proj-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: -0.04em;
}

.project-info { padding: 1.8rem; }
.project-card.featured .project-info {
    padding: 2.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.project-tags span {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--accent-3);
    padding: 0.2rem 0.7rem;
    border-radius: 99px;
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.project-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.project-card.featured .project-info h3 { font-size: 1.9rem; }

.project-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--accent-3);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s;
}

.project-link:hover { color: #fff; gap: 0.6rem; }

.arrow { transition: transform 0.2s; }
.project-link:hover .arrow { transform: translateX(3px); }

/* ============================================
   CONTACT
   ============================================ */

.contact {
    padding: 9rem 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-left p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 0.97rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-item:hover {
    border-color: var(--border-h);
    background: var(--bg-card-h);
    transform: translateX(5px);
}

.contact-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-item > div { flex: 1; }
.contact-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.contact-value { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.contact-arrow {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.2s;
}
.contact-item:hover .contact-arrow { opacity: 1; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 0.85rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.form-group { width: 100%; }

.form-input,
.form-textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 2rem 0 6rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-top {
    color: var(--accent-3);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-top:hover { color: #fff; }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal.visible .skill-card:nth-child(1) { transition-delay: 0s; }
.reveal.visible .skill-card:nth-child(2) { transition-delay: 0.08s; }
.reveal.visible .skill-card:nth-child(3) { transition-delay: 0.16s; }
.reveal.visible .skill-card:nth-child(4) { transition-delay: 0.24s; }
.reveal.visible .skill-card:nth-child(5) { transition-delay: 0.32s; }
.reveal.visible .skill-card:nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .image-placeholder { max-width: 300px; }
    .floating-card-2 { display: none; }

    .skills-grid { grid-template-columns: repeat(2, 1fr); }

    .projects-grid { grid-template-columns: 1fr; }
    .project-card.featured { grid-column: span 1; display: block; }
    .project-card.featured .project-image { aspect-ratio: 16/9; }

    .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }

    .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .skills-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
    .stat-number { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }

    /* Compact bottom nav on small screens */
    .bottom-nav { bottom: 1rem; gap: 0.1rem; padding: 0.35rem; }
    .bnav-item { padding: 0.55rem 0.7rem; }
    .bnav-item.is-active { padding: 0.55rem 1rem; }
    .bnav-icon { width: 16px; height: 16px; }
    .bnav-label { font-size: 0.72rem; }
    .bnav-item.is-active .bnav-label { max-width: 80px; }
}
