/* ========================================
   MINECRAFT/ROBLOX VOXEL PORTFOLIO 
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

:root {
    /* Minecraft/Roblox Color Palette */
    --primary: #5D8C3E;          /* Grass green */
    --primary-dark: #3B5323;      /* Dark grass */
    --secondary: #8B6914;         /* Dirt/wood brown */
    --accent: #FFD700;            /* Gold/coin yellow */
    --purple: #7B68EE;            /* Enchantment purple */
    --pink: #FF69B4;              /* Roblox pink */
    --blue: #87CEEB;              /* Sky blue */
    --orange: #FF8C00;            /* Lava orange */
    --stone: #808080;             /* Stone gray */
    --diamond: #00CED1;           /* Diamond cyan */
    --redstone: #DC143C;          /* Redstone red */
    --water: #1E90FF;             /* Water blue */
    --nether: #8B0000;            /* Nether red */
    
    /* Backgrounds - Minecraft style */
    --bg-primary: #87CEEB;        /* Sky blue */
    --bg-secondary: #78AB46;      /* Grass */
    --bg-card: #C4A484;           /* Oak wood plank */
    --bg-dirt: #8B6914;           /* Dirt */
    --bg-stone: #6B6B6B;          /* Stone */
    
    /* Text */
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-light: #FFFFFF;
    --text-shadow: #000000;
    
    /* Blocky Style - No curves! */
    --border-thick: 4px solid #1A1A1A;
    --border-medium: 3px solid #1A1A1A;
    --border-pixel: 2px solid #1A1A1A;
    --shadow-block: 6px 6px 0px #1A1A1A;
    --shadow-block-sm: 4px 4px 0px #1A1A1A;
    --shadow-block-hover: 8px 8px 0px #1A1A1A;
    
    /* Pixel perfect transitions */
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --smooth: steps(4);
    --pixel-step: steps(8);
}

/* Dark Mode - Nether Theme */
[data-theme="dark"] {
    --bg-primary: #1A0A0A;        /* Dark nether */
    --bg-secondary: #2D1A1A;      /* Netherrack */
    --bg-card: #3D2B2B;           /* Dark oak */
    --text-primary: #EAEAEA;
    --text-secondary: #B8B8B8;
    --shadow-block: 6px 6px 0px #000000;
    --shadow-block-sm: 4px 4px 0px #000000;
    --shadow-block-hover: 8px 8px 0px #000000;
    --primary: #FF6347;           /* Lava */
    --secondary: #8B4513;         /* Nether brick */
    --accent: #FFD700;            /* Glowstone */
}

/* ========================================
   BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'VT323', 'Press Start 2P', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect fill="%23FFD700" x="4" y="4" width="4" height="4"/><rect fill="%23FFD700" x="8" y="8" width="4" height="4"/><rect fill="%23FFD700" x="12" y="12" width="4" height="4"/><rect fill="%235D8C3E" x="8" y="4" width="4" height="4"/><rect fill="%235D8C3E" x="4" y="8" width="4" height="4"/></svg>') 12 12, auto;
    image-rendering: pixelated;
}

/* Pixelated background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
}

/* Custom Cursor - Minecraft pickaxe style */
.cursor-follower {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border: var(--border-pixel);
    border-radius: 0;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s steps(2), width 0.1s steps(2), height 0.1s steps(2);
    image-rendering: pixelated;
    box-shadow: 
        2px 2px 0 var(--primary-dark),
        -1px -1px 0 rgba(255,255,255,0.5) inset;
}

.cursor-follower.active {
    width: 32px;
    height: 32px;
    background: var(--diamond);
    animation: block-pulse 0.2s steps(2) infinite;
}

@keyframes block-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Floating Clouds */
.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cloud {
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
    animation: float-cloud 20s linear infinite;
}

.cloud-1 { top: 10%; animation-delay: 0s; }
.cloud-2 { top: 30%; animation-delay: -7s; }
.cloud-3 { top: 60%; animation-delay: -14s; }

@keyframes float-cloud {
    from { transform: translateX(-100px); }
    to { transform: translateX(calc(100vw + 100px)); }
}

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

/* MINECRAFT INVENTORY BAR STYLE NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    background: linear-gradient(180deg, #6B5344 0%, #5A4636 50%, #4A382A 100%);
    border-bottom: 4px solid #3D2E23;
    z-index: 1000;
    box-shadow: 
        0 4px 0 #2A1F17,
        inset 0 2px 0 rgba(255,255,255,0.1);
    image-rendering: pixelated;
}

.nav-logo {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 #000;
    padding: 8px 12px;
    background: linear-gradient(180deg, #5D8C3E 0%, #4A7030 100%);
    border: 3px solid #3B5323;
    box-shadow: 
        inset -2px -2px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    font-weight: 400;
    padding: 10px 14px;
    border: 3px solid #3D2E23;
    border-radius: 0;
    background: linear-gradient(180deg, #8B7355 0%, #6B5344 100%);
    transition: all 0.1s steps(2);
    position: relative;
    text-shadow: 1px 1px 0 #000;
    box-shadow: 
        inset -2px -2px 0 rgba(0,0,0,0.4),
        inset 2px 2px 0 rgba(255,255,255,0.15);
}

.nav-link:hover {
    background: linear-gradient(180deg, var(--accent) 0%, #D4A800 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 0 #3D2E23,
        inset -2px -2px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.3);
    color: #1A1A1A;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
}

.theme-toggle {
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border: 3px solid #3D2E23;
    border-radius: 0;
    background: linear-gradient(180deg, #7B68EE 0%, #5A4ED0 100%);
    transition: all 0.1s steps(2);
    box-shadow: 
        inset -2px -2px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.2);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: linear-gradient(180deg, #9B88FF 0%, #7B68EE 100%);
}

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

/* MINECRAFT WORLD HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    /* Minecraft sky to grass gradient */
    background: 
        linear-gradient(180deg, 
            #87CEEB 0%,    /* Sky blue */
            #87CEEB 60%,   /* Sky continues */
            #78AB46 60%,   /* Grass green starts */
            #5D8C3E 70%,   /* Darker grass */
            #8B6914 70%,   /* Dirt */
            #6B5108 100%   /* Dark dirt */
        );
}

/* Pixelated block pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 32px,
            rgba(0,0,0,0.05) 32px,
            rgba(0,0,0,0.05) 64px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 32px,
            rgba(0,0,0,0.05) 32px,
            rgba(0,0,0,0.05) 64px
        );
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

/* MINECRAFT SIGN / CHAT BOX STYLE */
.speech-bubble {
    background: linear-gradient(180deg, #D4A574 0%, #C4A484 50%, #B89464 100%);
    border: 4px solid #5A4636;
    border-radius: 0;
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    box-shadow: 
        4px 4px 0 #3D2E23,
        inset -3px -3px 0 rgba(0,0,0,0.2),
        inset 3px 3px 0 rgba(255,255,255,0.3);
    animation: block-bob 3s steps(4) infinite;
    image-rendering: pixelated;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #C4A484 50%, transparent 50%);
    border-left: 4px solid #5A4636;
    border-bottom: 4px solid #5A4636;
}

.speech-bubble::before {
    content: '>';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    animation: cursor-blink 1s steps(1) infinite;
}

.greeting {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 0 #000;
    padding-left: 1rem;
}

@keyframes block-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* MINECRAFT STEVE-STYLE CHARACTER */
.character-container {
    margin: 2rem 0;
}

.character {
    display: inline-block;
    animation: minecraft-idle 1s steps(2) infinite;
}

/* Blocky Minecraft head */
.character-face {
    font-size: 1rem;
    position: relative;
    background: linear-gradient(180deg, #D4A574 0%, #C4A060 100%);
    width: 80px;
    height: 80px;
    border-radius: 0;
    border: 4px solid #5A4636;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 
        4px 4px 0 #3D2E23,
        inset -4px -4px 0 rgba(0,0,0,0.2),
        inset 4px 4px 0 rgba(255,255,255,0.2);
    image-rendering: pixelated;
}

/* Minecraft hair on top */
.character-face::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background: linear-gradient(180deg, #4A3728 0%, #3D2E23 100%);
    border-bottom: 4px solid #2A1F17;
}

.eyes {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    z-index: 1;
}

.eye {
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    border-radius: 0;
    border: 2px solid #1A1A1A;
    position: relative;
    overflow: visible;
}

.pupil {
    width: 6px;
    height: 6px;
    background: #1A1A1A;
    border-radius: 0;
    position: absolute;
    top: 2px;
    left: 2px;
    transform: none;
    transition: all 0.05s steps(2);
}

.mouth {
    font-size: 0.8rem;
    line-height: 1;
    margin-top: 4px;
    z-index: 1;
}

/* Minecraft body */
.character-body {
    width: 48px;
    height: 64px;
    background: linear-gradient(180deg, #00CED1 0%, #008B8B 100%);
    border: 4px solid #006060;
    margin: -4px auto 0;
    box-shadow: 
        4px 4px 0 #3D2E23,
        inset -3px -3px 0 rgba(0,0,0,0.3),
        inset 3px 3px 0 rgba(255,255,255,0.2);
    position: relative;
    font-size: 0;
}

/* Arms */
.character-body::before,
.character-body::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 48px;
    background: linear-gradient(180deg, #D4A574 0%, #C4A060 100%);
    border: 3px solid #5A4636;
    top: 0;
}

.character-body::before {
    left: -16px;
    animation: arm-swing-left 1s steps(2) infinite;
}

.character-body::after {
    right: -16px;
    animation: arm-swing-right 1s steps(2) infinite;
}

@keyframes minecraft-idle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes arm-swing-left {
    0%, 100% { transform: rotate(8deg); }
    50% { transform: rotate(-8deg); }
}

@keyframes arm-swing-right {
    0%, 100% { transform: rotate(-8deg); }
    50% { transform: rotate(8deg); }
}

/* MINECRAFT TITLE TEXT */
.hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 2.5rem;
    margin: 1.5rem 0;
    letter-spacing: 2px;
    color: var(--text-light);
    text-shadow: 
        4px 4px 0 #3B5323,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000;
}

.letter {
    display: inline-block;
    transition: all 0.1s steps(2);
}

.letter:hover {
    color: var(--accent);
    transform: translateY(-4px);
    text-shadow: 
        4px 4px 0 #8B6914,
        0 0 10px var(--accent);
}

.letter.highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0 #000;
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--primary);
    white-space: nowrap;
    animation: typewriter 3s steps(30) 1s forwards, blink 0.8s step-end infinite;
    width: 0;
    display: inline-block;
}

@keyframes typewriter {
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* MINECRAFT BUTTON STYLE */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    padding: 1rem 1.5rem;
    border: 4px solid #1A1A1A;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.1s steps(2);
    letter-spacing: 0px;
    text-transform: uppercase;
    position: relative;
    image-rendering: pixelated;
}

.btn-primary {
    background: linear-gradient(180deg, #5D8C3E 0%, #4A7030 50%, #3B5323 100%);
    color: var(--text-light);
    text-shadow: 2px 2px 0 #000;
    box-shadow: 
        4px 4px 0 #2A1F17,
        inset -3px -3px 0 rgba(0,0,0,0.3),
        inset 3px 3px 0 rgba(255,255,255,0.2);
    border-color: #3B5323;
}

.btn-secondary {
    background: linear-gradient(180deg, #808080 0%, #6B6B6B 50%, #505050 100%);
    color: var(--text-light);
    text-shadow: 2px 2px 0 #000;
    box-shadow: 
        4px 4px 0 #2A1F17,
        inset -3px -3px 0 rgba(0,0,0,0.3),
        inset 3px 3px 0 rgba(255,255,255,0.2);
    border-color: #404040;
}

.btn:hover, .bounce-hover:hover {
    transform: translateY(-4px);
    box-shadow: 
        6px 6px 0 #2A1F17,
        inset -3px -3px 0 rgba(0,0,0,0.2),
        inset 3px 3px 0 rgba(255,255,255,0.4);
    filter: brightness(1.2);
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 
        2px 2px 0 #2A1F17,
        inset -3px -3px 0 rgba(0,0,0,0.4),
        inset 3px 3px 0 rgba(255,255,255,0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce-scroll 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: var(--border-medium);
    border-radius: 20px;
    position: relative;
    background: var(--bg-card);
}

.wheel {
    width: 6px;
    height: 10px;
    background: var(--primary);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* ========================================
   SECTION STYLES
   ======================================== */

section {
    padding: 6rem 3rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.5rem;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    color: var(--text-light);
    text-shadow: 3px 3px 0 #000;
}

/* MINECRAFT SIGN TITLE */
.comic-title {
    background: linear-gradient(180deg, #D4A574 0%, #C4A484 50%, #B89464 100%);
    padding: 1rem 2rem;
    border: 4px solid #5A4636;
    border-radius: 0;
    box-shadow: 
        6px 6px 0 #3D2E23,
        inset -3px -3px 0 rgba(0,0,0,0.2),
        inset 3px 3px 0 rgba(255,255,255,0.3);
    transform: rotate(0deg);
    color: var(--text-primary);
    text-shadow: none;
}

.title-decoration {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 1rem;
    animation: pop 0.5s ease-out;
}

@keyframes pop {
    0% { transform: scale(0); }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

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

/* MINECRAFT UNDERGROUND LAYER */
.about {
    background: 
        linear-gradient(180deg, 
            #78AB46 0%,      /* Grass */
            #8B6914 5%,      /* Dirt */
            #6B5108 20%,     /* Deep dirt */
            #808080 40%,     /* Stone */
            #6B6B6B 100%     /* Deep stone */
        );
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image-container {
    position: relative;
}

/* MINECRAFT ITEM FRAME STYLE */
.polaroid {
    background: linear-gradient(180deg, #6B5344 0%, #5A4636 100%);
    padding: 12px;
    padding-bottom: 2.5rem;
    border: 4px solid #3D2E23;
    box-shadow: 
        6px 6px 0 #2A1F17,
        inset -3px -3px 0 rgba(0,0,0,0.3),
        inset 3px 3px 0 rgba(255,255,255,0.15);
    transform: rotate(0deg);
    transition: all 0.1s steps(2);
}

.polaroid:hover, .wobble-hover:hover {
    transform: translateY(-4px);
    box-shadow: 
        8px 8px 0 #2A1F17,
        inset -3px -3px 0 rgba(0,0,0,0.2),
        inset 3px 3px 0 rgba(255,255,255,0.25);
}

.polaroid-image {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #5D8C3E 0%, #3B5323 50%, #8B6914 100%);
    border: 4px solid #1A1A1A;
    display: flex;
    justify-content: center;
    align-items: center;
    image-rendering: pixelated;
}

.avatar-bg {
    font-size: 4rem;
    animation: pixel-float 1s steps(4) infinite;
}

@keyframes pixel-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.polaroid-caption {
    font-family: 'Bangers', cursive;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.sticker {
    position: absolute;
    font-size: 2.5rem;
    animation: sticker-float 4s ease-in-out infinite;
}

.sticker-1 { top: -20px; right: 0; animation-delay: 0s; }
.sticker-2 { bottom: 20px; left: -20px; animation-delay: -1s; }
.sticker-3 { top: 50%; right: -30px; animation-delay: -2s; }

@keyframes sticker-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* MINECRAFT BOOK/SCROLL STYLE */
.comic-panel {
    background: linear-gradient(180deg, #F5E6C8 0%, #E8D5B0 50%, #DBC498 100%);
    border: 4px solid #5A4636;
    border-radius: 0;
    padding: 2rem;
    box-shadow: 
        6px 6px 0 #3D2E23,
        inset -3px -3px 0 rgba(0,0,0,0.1),
        inset 3px 3px 0 rgba(255,255,255,0.5);
    font-family: 'VT323', monospace;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2D2D2D;
}

.comic-panel p {
    margin-bottom: 1rem;
}

.highlight-text {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent) 100%);
    background-size: 100% 40%;
    background-position: 0 90%;
    background-repeat: no-repeat;
    font-weight: 700;
}

.fun-list {
    list-style: none;
    margin: 1rem 0;
}

.fun-item {
    padding: 0.5rem 0;
    padding-left: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.fun-item::before {
    content: attr(data-icon);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.fun-item:hover {
    transform: translateX(10px);
    color: var(--primary);
}

/* Stats */
.stats-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* MINECRAFT INVENTORY SLOT STYLE */
.stat-box {
    background: linear-gradient(180deg, #8B7355 0%, #6B5344 100%);
    border: 4px solid #3D2E23;
    border-radius: 0;
    padding: 1.2rem;
    text-align: center;
    flex: 1;
    min-width: 110px;
    box-shadow: 
        4px 4px 0 #2A1F17,
        inset -3px -3px 0 rgba(0,0,0,0.4),
        inset 3px 3px 0 rgba(255,255,255,0.15);
    transition: all 0.1s steps(2);
    position: relative;
    overflow: hidden;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 
        6px 6px 0 #2A1F17,
        inset -3px -3px 0 rgba(0,0,0,0.3),
        inset 3px 3px 0 rgba(255,255,255,0.25);
    background: linear-gradient(180deg, var(--accent) 0%, #D4A800 100%);
}

.stat-number {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.5rem;
    color: var(--accent);
    display: block;
    text-shadow: 2px 2px 0 #000;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stat-icon {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.5;
}

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

/* MINECRAFT CAVE/MINESHAFT AREA */
.projects {
    background: 
        linear-gradient(180deg, 
            #6B6B6B 0%,      /* Stone */
            #505050 30%,     /* Dark stone */
            #3D3D3D 60%,     /* Deeper */
            #2D2D2D 100%     /* Coal level */
        );
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    perspective: 1000px;
    height: 350px;
    position: relative;
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--bounce);
    transform-style: preserve-3d;
    cursor: pointer;
}

.project-card:hover .card-inner {
    transform: rotateY(180deg);
}

/* MINECRAFT BLOCK CARDS */
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 4px solid #1A1A1A;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
    image-rendering: pixelated;
}

.card-front {
    /* Diamond ore block style */
    background: 
        linear-gradient(180deg, #808080 0%, #6B6B6B 50%, #505050 100%);
    box-shadow: 
        6px 6px 0 #1A1A1A,
        inset -4px -4px 0 rgba(0,0,0,0.4),
        inset 4px 4px 0 rgba(255,255,255,0.15);
}

/* Add diamond ore spots */
.card-front::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--diamond);
    top: 20px;
    left: 20px;
    box-shadow: 
        80px 40px 0 var(--diamond),
        40px 80px 0 var(--diamond),
        120px 100px 0 var(--diamond);
    opacity: 0.8;
}

.card-back {
    /* Emerald block style */
    background: linear-gradient(180deg, #5D8C3E 0%, #4A7030 50%, #3B5323 100%);
    color: var(--text-light);
    transform: rotateY(180deg);
    box-shadow: 
        6px 6px 0 #1A1A1A,
        inset -4px -4px 0 rgba(0,0,0,0.3),
        inset 4px 4px 0 rgba(255,255,255,0.2);
}

.project-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.project-card h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0px;
    color: var(--text-light);
    text-shadow: 2px 2px 0 #000;
}

.project-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    border: var(--border-medium);
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s var(--bounce);
}

.project-link:hover {
    transform: scale(1.1);
    background: var(--accent);
}

/* MINECRAFT XP ORB / ACHIEVEMENT BADGE */
.card-decoration {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(180deg, var(--accent) 0%, #D4A800 100%);
    color: #1A1A1A;
    font-family: 'Press Start 2P', monospace;
    padding: 0.4rem 0.6rem;
    border: 3px solid #8B6914;
    border-radius: 0;
    transform: rotate(0deg);
    font-size: 0.5rem;
    z-index: 10;
    box-shadow: 
        3px 3px 0 #1A1A1A,
        inset -2px -2px 0 rgba(0,0,0,0.2),
        inset 2px 2px 0 rgba(255,255,255,0.4);
    animation: xp-glow 1.5s steps(2) infinite;
}

@keyframes xp-glow {
    0%, 100% { 
        box-shadow: 
            3px 3px 0 #1A1A1A,
            inset -2px -2px 0 rgba(0,0,0,0.2),
            inset 2px 2px 0 rgba(255,255,255,0.4),
            0 0 8px var(--accent);
    }
    50% { 
        box-shadow: 
            3px 3px 0 #1A1A1A,
            inset -2px -2px 0 rgba(0,0,0,0.2),
            inset 2px 2px 0 rgba(255,255,255,0.4),
            0 0 16px var(--accent);
    }
}

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

/* MINECRAFT ENCHANTMENT TABLE AREA */
.skills {
    background: 
        linear-gradient(180deg, 
            #2D2D2D 0%,      /* Deep cave */
            #1A1A1A 40%,     /* Obsidian level */
            #0D0D1A 70%,     /* Near bedrock */
            #7B68EE 100%     /* Enchantment glow */
        );
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* MINECRAFT CHEST STYLE */
.skill-category {
    background: linear-gradient(180deg, #6B5344 0%, #5A4636 50%, #4A382A 100%);
    border: 4px solid #3D2E23;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 
        6px 6px 0 #1A1A1A,
        inset -4px -4px 0 rgba(0,0,0,0.4),
        inset 4px 4px 0 rgba(255,255,255,0.1);
    position: relative;
}

/* Chest lock/latch */
.skill-category::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 16px;
    background: linear-gradient(180deg, #8B8B8B 0%, #6B6B6B 100%);
    border: 3px solid #404040;
    border-radius: 0;
}

.category-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    color: var(--accent);
    text-shadow: 2px 2px 0 #000;
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1rem;
}

.skill-icon {
    font-size: 1.5rem;
}

.skill-name {
    font-weight: 700;
}

/* MINECRAFT XP BAR */
.skill-bar {
    width: 100px;
    height: 12px;
    background: #1A1A1A;
    border: 3px solid #0D0D0D;
    border-radius: 0;
    overflow: hidden;
    box-shadow: inset 2px 2px 0 rgba(0,0,0,0.5);
}

.skill-progress {
    height: 100%;
    background: linear-gradient(180deg, #7FFF00 0%, #5D8C3E 50%, #3B5323 100%);
    border-radius: 0;
    width: 0;
    transition: width 0.5s steps(10);
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        0 0 8px rgba(127,255,0,0.5);
}

.skill-item.animate .skill-progress {
    width: var(--progress);
}

.skill-level {
    font-family: 'Bangers', cursive;
    font-size: 0.8rem;
    color: var(--primary);
    background: var(--accent);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    border: 2px solid var(--text-primary);
}

/* Power-ups */
.power-ups {
    text-align: center;
    margin-top: 3rem;
}

.power-ups h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.powerup-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* MINECRAFT HOTBAR ITEM */
.powerup-item {
    background: linear-gradient(180deg, #8B7355 0%, #6B5344 100%);
    border: 3px solid #3D2E23;
    border-radius: 0;
    padding: 0.6rem 1rem;
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    text-shadow: 1px 1px 0 #000;
    transition: all 0.1s steps(2);
    box-shadow: 
        3px 3px 0 #2A1F17,
        inset -2px -2px 0 rgba(0,0,0,0.4),
        inset 2px 2px 0 rgba(255,255,255,0.1);
}

.powerup-item:hover {
    background: linear-gradient(180deg, var(--accent) 0%, #D4A800 100%);
    transform: translateY(-4px);
    color: #1A1A1A;
    text-shadow: none;
    box-shadow: 
        5px 5px 0 #2A1F17,
        inset -2px -2px 0 rgba(0,0,0,0.2),
        inset 2px 2px 0 rgba(255,255,255,0.4),
        0 0 12px var(--accent);
}

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

/* MINECRAFT VILLAGE / OVERWORLD */
.contact {
    background: 
        linear-gradient(180deg, 
            #7B68EE 0%,      /* Enchantment purple */
            #87CEEB 20%,     /* Back to sky */
            #78AB46 80%,     /* Grass plains */
            #5D8C3E 100%    /* Dark grass */
        );
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.contact-info {
    text-align: center;
}

.contact-character {
    font-size: 4rem;
    margin-bottom: 2rem;
    position: relative;
    height: 100px;
}

.phone-ring {
    position: absolute;
    left: 30%;
    animation: ring 1s ease-in-out infinite;
}

.mail-float {
    position: absolute;
    right: 30%;
    animation: mail-bounce 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

@keyframes mail-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.contact-text {
    font-size: 1.2rem;
    line-height: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* MINECRAFT HOTBAR SOCIAL LINKS */
.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(180deg, #8B7355 0%, #6B5344 100%);
    border: 3px solid #3D2E23;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.1s steps(2);
    box-shadow: 
        3px 3px 0 #2A1F17,
        inset -2px -2px 0 rgba(0,0,0,0.4),
        inset 2px 2px 0 rgba(255,255,255,0.1);
    position: relative;
}

.social-icon {
    font-size: 1.5rem;
}

.social-link:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, var(--accent) 0%, #D4A800 100%);
    box-shadow: 
        5px 5px 0 #2A1F17,
        inset -2px -2px 0 rgba(0,0,0,0.2),
        inset 2px 2px 0 rgba(255,255,255,0.4),
        0 0 12px var(--accent);
}

.social-link[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    background: var(--text-primary);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* MINECRAFT COMMAND BLOCK / CRAFTING UI */
.contact-form {
    background: linear-gradient(180deg, #6B5344 0%, #5A4636 50%, #4A382A 100%);
    border: 4px solid #3D2E23;
    border-radius: 0;
    padding: 2rem;
    box-shadow: 
        6px 6px 0 #2A1F17,
        inset -4px -4px 0 rgba(0,0,0,0.4),
        inset 4px 4px 0 rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
    text-shadow: 1px 1px 0 #000;
}

/* MINECRAFT TEXT INPUT STYLE */
.form-input {
    width: 100%;
    padding: 0.8rem;
    padding-right: 2.5rem;
    border: 3px solid #1A1A1A;
    border-radius: 0;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    background: linear-gradient(180deg, #2D2D2D 0%, #1A1A1A 100%);
    color: var(--text-light);
    transition: all 0.1s steps(2);
    box-shadow: inset 3px 3px 0 rgba(0,0,0,0.5);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 
        inset 3px 3px 0 rgba(0,0,0,0.5),
        0 0 8px var(--accent);
    transform: none;
}

.form-input::placeholder {
    color: #6B6B6B;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.input-decoration {
    position: absolute;
    right: 15px;
    top: 50%;
    font-size: 1.2rem;
    pointer-events: none;
}

.form-group:nth-child(3) .input-decoration {
    top: 60%;
}

.btn-submit {
    width: 100%;
    font-size: 1.3rem;
    margin-top: 1rem;
}

/* ========================================
   EXPERIENCE TIMELINE
   ======================================== */

/* MINECRAFT ACHIEVEMENT TIMELINE */
.experience {
    background: 
        linear-gradient(180deg, 
            #87CEEB 0%,      /* Sky */
            #78AB46 30%,     /* Grass */
            #8B6914 50%,     /* Dirt */
            #808080 100%     /* Stone */
        );
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: timeline-appear 0.5s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes timeline-appear {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* MINECRAFT ACHIEVEMENT ICON */
.timeline-marker {
    position: absolute;
    left: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent) 0%, #D4A800 100%);
    border: 4px solid #8B6914;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 
        3px 3px 0 #1A1A1A,
        inset -2px -2px 0 rgba(0,0,0,0.2),
        inset 2px 2px 0 rgba(255,255,255,0.4);
    z-index: 1;
    animation: achievement-glow 2s steps(2) infinite;
}

@keyframes achievement-glow {
    0%, 100% { box-shadow: 3px 3px 0 #1A1A1A, inset -2px -2px 0 rgba(0,0,0,0.2), inset 2px 2px 0 rgba(255,255,255,0.4), 0 0 8px var(--accent); }
    50% { box-shadow: 3px 3px 0 #1A1A1A, inset -2px -2px 0 rgba(0,0,0,0.2), inset 2px 2px 0 rgba(255,255,255,0.4), 0 0 16px var(--accent); }
}

/* MINECRAFT BOOK PAGE */
.timeline-content {
    background: linear-gradient(180deg, #F5E6C8 0%, #E8D5B0 50%, #DBC498 100%);
    border: 4px solid #5A4636;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 
        4px 4px 0 #3D2E23,
        inset -3px -3px 0 rgba(0,0,0,0.1),
        inset 3px 3px 0 rgba(255,255,255,0.5);
    transition: all 0.1s steps(2);
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 
        6px 6px 0 #3D2E23,
        inset -3px -3px 0 rgba(0,0,0,0.1),
        inset 3px 3px 0 rgba(255,255,255,0.5);
}

.timeline-header {
    margin-bottom: 1rem;
}

.timeline-header h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
    color: #5D8C3E;
    margin-bottom: 0.3rem;
}

.company-name {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.timeline-date {
    display: inline-block;
    background: var(--accent);
    color: var(--text-primary);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    border: 2px solid var(--text-primary);
}

.timeline-details {
    list-style: none;
    margin: 1rem 0;
}

.timeline-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.timeline-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tags span {
    background: linear-gradient(135deg, var(--secondary), var(--purple));
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid var(--text-primary);
}

/* Hero additions */
.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-companies {
    margin-top: 2rem;
    text-align: center;
}

.hero-companies span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.company-tag {
    background: var(--bg-card);
    border: 2px solid var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 3px 3px 0 var(--text-primary);
}

/* Project card tech mini */
.tech-mini {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Contact location */
.contact-location {
    margin-top: 1rem;
    font-weight: 600;
}

/* Footer hint */
.footer-hint {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Responsive timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 0;
        width: 40px;
        height: 40px;
    }
    
    .timeline-header h3 {
        font-size: 1.2rem;
    }
}

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

/* MINECRAFT BEDROCK LAYER */
.footer {
    background: 
        repeating-linear-gradient(
            90deg,
            #1A1A1A 0px,
            #1A1A1A 32px,
            #0D0D0D 32px,
            #0D0D0D 64px
        ),
        linear-gradient(180deg, #2D2D2D 0%, #0D0D0D 100%);
    color: var(--text-light);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    font-family: 'VT323', monospace;
    border-top: 4px solid #404040;
}

.footer-character {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: footer-bounce 2s ease-in-out infinite;
}

@keyframes footer-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.footer p {
    margin: 0.5rem 0;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.easter-egg {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.easter-egg:hover {
    opacity: 1;
    transform: scale(1.5) rotate(360deg);
}

/* ========================================
   CONFETTI
   ======================================== */

#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confetti-fall 3s ease-out forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ========================================
   ANIMATIONS & UTILITIES
   ======================================== */

.wobble {
    animation: wobble 3s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image-container {
        display: flex;
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
    }
    
    .skill-item {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }
    
    .skill-bar {
        grid-column: 1 / -1;
        width: 100%;
    }
    
    .skill-level {
        display: none;
    }

    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .polaroid-image {
        width: 150px;
        height: 150px;
    }
}
