/* ================================
   DARK THEME PORTFOLIO - UPDATED STYLING
   Based on modern dev UI design system
   ================================ */

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

:root { 
    /* Dark Theme Color Palette CHANGE BRAND COLORS HERE [MEDIA,ATHLETE,ETC] */ 
    --bg: #0b0c0e;
    --panel: #121418;
    --card: #161922;
    --muted: #8b919d;
    --text: #e7eaf0;
    --brand: #65b2ff; 
    --brand-ink: #0b2139;
    --ok: #5ce0a3;
    --warn: #ffd666;
    --danger: #ff7a7a;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,.35);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 5rem 2rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    
    /* Typography */
    --font-primary: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    background: radial-gradient(1200px 800px at 80% -10%, #182033 0%, #0b0c0e 55%);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #cfd6e4;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

code, pre {
    font-family: var(--font-mono);
}

/* ================================
   UTILITIES
   ================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Button Styles */
.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--brand);
    color: var(--brand-ink);
    box-shadow: 0 6px 18px rgba(101,178,255,.35);
}

.btn-primary:hover {
    filter: saturate(1.05) brightness(1.05);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.24);
}

/* ================================
   NAVIGATION
   ================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255,255,255,.02);
    border-bottom: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(6px);
}

.nav.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,.5);
    background: rgba(18,20,24,.95);
    border-bottom-color: rgba(255,255,255,.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    transition: var(--transition-fast);
}

.nav-logo:hover {
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--muted);
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link.active {
    color: var(--text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--brand);
    color: var(--brand-ink);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(101,178,255,.35);
}

.nav-cta:hover {
    filter: saturate(1.05) brightness(1.05);
    transform: translateY(-2px);
}

.nav-cta:active {
    transform: translateY(1px);
}

/* Mobile Toggle */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Resume Dropdown */
.resume-dropdown {
    position: fixed;
    top: 70px;
    right: 2rem;
    background: var(--card);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 300px;
    z-index: 999;
}

.resume-dropdown.active {
    display: flex;
}

.resume-option {
    padding: 1rem;
    border-radius: 12px;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border: 1px solid transparent;
}

.resume-option:hover {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.12);
}

.resume-title {
    font-weight: 600;
    color: var(--text);
}

.resume-desc {
    font-size: 0.875rem;
    color: var(--muted);
}

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

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

.hero-container {
    max-width: 800px;
    text-align: center;
}

.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    object-fit: cover;
    border: 4px solid var(--brand);
    box-shadow: 0 8px 24px rgba(101,178,255,.4);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #cfd6e4;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-social a {
    color: var(--muted);
    transition: var(--transition-fast);
}

.hero-social a:hover {
    color: var(--brand);
    transform: translateY(-3px);
}

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

.about {
    padding: var(--section-padding);
    background: var(--bg);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cfd6e4;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.06);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(101,178,255,.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.projects {
    padding: var(--section-padding);
    background: var(--panel);
}

/* Featured Project */
.project-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: var(--card);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.06);
}

.project-image-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    border: 1px solid rgba(255,255,255,.08);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-image:hover {
    transform: scale(1.05);
}

.project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 600;
}

.project-description {
    font-size: 1.125rem;
    color: #cfd6e4;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-features {
    margin-bottom: 1.5rem;
}

.project-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #cfd6e4;
}

.project-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 700;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    font-family: var(--font-mono);
    font-size: 12.5px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: #121723;
    color: #bcd3ff;
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.project-card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.06);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(101,178,255,.3);
}

.project-card .project-title {
    font-size: 1.5rem;
}

.project-card .project-features {
    font-size: 0.95rem;
}

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

.skills {
    padding: var(--section-padding);
    background: var(--bg);
}

.skills-categories {
    display: grid;
    gap: 3rem;
}

.skills-category {
    background: var(--card);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.06);
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--brand);
    font-weight: 600;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.skill-item {
    padding: 1rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.skill-item:hover {
    border-color: var(--brand);
    background: rgba(101,178,255,.1);
    transform: translateY(-3px);
}

/* ================================
   EXPERIENCE SECTION
   ================================ */

.experience {
    padding: var(--section-padding);
    background: var(--panel);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,.12);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--brand);
    border: 3px solid var(--panel);
    box-shadow: 0 0 0 4px rgba(255,255,255,.12);
}

.timeline-date {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.timeline-company {
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-details {
    margin-left: 1.5rem;
}

.timeline-details li {
    position: relative;
    margin-bottom: 0.75rem;
    color: #cfd6e4;
    line-height: 1.6;
}

.timeline-details li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--brand);
    font-weight: 700;
}

.experience-cta {
    text-align: center;
    margin-top: 3rem;
}

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

.contact {
    padding: var(--section-padding);
    background: var(--bg);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #cfd6e4;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255,255,255,.06);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(101,178,255,.3);
}

.contact-card svg {
    color: var(--brand);
}

.contact-card strong {
    font-size: 1.125rem;
    color: var(--text);
}

.contact-card span {
    color: var(--muted);
}

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

.footer {
    padding: 3rem 2rem 2rem;
    background: var(--panel);
    color: var(--text);
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-left p {
    color: var(--muted);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--muted);
    transition: var(--transition-fast);
    font-weight: 500;
}

.footer-social a:hover {
    color: var(--brand);
}

.easter-egg-hint {
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-in 3s forwards;
}

.easter-egg-hint small {
    color: var(--muted);
    font-size: 0.875rem;
}

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

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

@media (max-width: 1024px) {
    .project-featured {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Navigation */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--panel);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Hero */
    .hero {
        padding: 5rem 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    /* Projects */
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-featured {
        padding: 2rem;
    }
    
    /* Skills */
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Timeline */
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-image {
        width: 150px;
        height: 150px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .project-links {
        flex-direction: column;
    }
}

/* ================================
   MINECRAFT HEARTH STYLES (PRESERVED)
   ================================ */

.hearth-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-128px);
    width: 256px;
    height: 192px;
    z-index: 1001;
    perspective: 800px;
    transform-style: preserve-3d;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

body.minecraft-theme .hearth-container {
    opacity: 1;
    visibility: visible;
}

.hearth-back-wall {
    position: absolute;
    top: 0;
    left: 0;
    width: 256px;
    height: 192px;
    background-image: url('../textures/cobblestone.png');
    background-size: 256px 256px;
    background-repeat: repeat;
    transform: translateZ(-80px);
    filter: brightness(0.3);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.hearth-inner-left,
.hearth-inner-right,
.hearth-inner-bottom {
    position: absolute;
    background-image: url('../textures/stonebrick.png');
    background-size: 256px 256px;
    transform: translateZ(-40px);
    filter: brightness(0.5);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.hearth-inner-left {
    top: 32px;
    left: 0;
    width: 32px;
    height: 128px;
}

.hearth-inner-right {
    top: 32px;
    right: 0;
    width: 32px;
    height: 128px;
}

.hearth-inner-bottom {
    bottom: 0;
    left: 32px;
    width: 192px;
    height: 32px;
}

#fireCanvas {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 192px;
    height: 128px;
    transform: translateZ(-20px);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.hearth-frame {
    position: absolute;
    background-image: url('../textures/stonebrick_carved.png');
    background-size: 256px 256px;
    transform: translateZ(0);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.hearth-frame-top {
    top: 0;
    left: 32px;
    width: 192px;
    height: 32px;
    box-shadow: inset 0 -8px 12px rgba(0, 0, 0, 0.6);
}

.hearth-frame-bottom {
    bottom: 0;
    left: 32px;
    width: 192px;
    height: 32px;
    box-shadow: inset 0 8px 12px rgba(0, 0, 0, 0.6);
}

.hearth-frame-left {
    top: 32px;
    left: 0;
    width: 32px;
    height: 128px;
    box-shadow: inset -8px 0 12px rgba(0, 0, 0, 0.6);
}

.hearth-frame-right {
    top: 32px;
    right: 0;
    width: 32px;
    height: 128px;
    box-shadow: inset 8px 0 12px rgba(0, 0, 0, 0.6);
}

.hearth-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    background-image: url('../textures/stonebrick_carved.png');
    background-size: 256px 256px;
    transform: translateZ(5px);
    box-shadow: 
        inset -4px -4px 8px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.4);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.hearth-corner-tl {
    top: 0;
    left: 0;
    background-position: 0 0;
}

.hearth-corner-tr {
    top: 0;
    right: 0;
    background-position: -224px 0;
}

.hearth-corner-bl {
    bottom: 0;
    left: 0;
    background-position: 0 -160px;
}

.hearth-corner-br {
    bottom: 0;
    right: 0;
    background-position: -224px -160px;
}

.ember-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 256px;
    height: 192px;
    transform: translateZ(20px);
    pointer-events: none;
    overflow: visible;
}

.ember {
    position: absolute;
    width: 8px;
    height: 8px;
    background-image: url('../textures/particles.png');
    background-size: 256px 256px;
    background-position: -48px -48px;
    opacity: 0.9;
    filter: brightness(1.5);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

@keyframes ember-float {
    0% {
        transform: translateY(0) translateX(0) translateZ(0);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-60px) translateX(10px) translateZ(30px);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-120px) translateX(-5px) translateZ(60px);
        opacity: 0;
    }
}

.ember.active {
    animation: ember-float 3s ease-out forwards;
}

.fire-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(10px);
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle at center,
        rgba(255, 140, 0, 0.4) 0%,
        rgba(255, 100, 0, 0.2) 30%,
        rgba(255, 60, 0, 0.1) 50%,
        transparent 70%
    );
    pointer-events: none;
    filter: blur(20px);
    animation: fire-glow-flicker 0.3s infinite alternate;
}

@keyframes fire-glow-flicker {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) translateZ(10px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) translateZ(10px) scale(1.05);
    }
}

body.minecraft-theme .nav {
    box-shadow: 
        0 2px 10px rgba(0,0,0,.5),
        0 -20px 60px rgba(255, 140, 0, 0.15);
}

body.minecraft-theme .nav-container {
    filter: brightness(1.05);
}

body.minecraft-theme .nav-link:hover,
body.minecraft-theme .nav-cta:hover {
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
    transition: text-shadow 0.2s ease;
}

@media (max-width: 768px) {
    .hearth-container {
        transform: translateX(-96px) scale(0.75);
        transform-origin: top center;
    }
    
    body.minecraft-theme .nav {
        top: 160px;
    }
}

@media (max-width: 480px) {
    .hearth-container {
        transform: translateX(-64px) scale(0.5);
    }
    
    body.minecraft-theme .nav {
        top: 120px;
    }
}

.hearth-container,
.hearth-container * {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .fire-glow {
        animation: none;
    }
    
    .ember.active {
        animation-duration: 5s;
    }
}