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

body {
    font-family: 'Patrick Hand', cursive;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    color: #2c3e50;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paper-background {
    width: calc(100% - 200px);
    height: calc(100vh - 200px);
    background-image: url('assets/desk.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    padding: 100px;
    position: relative;
    margin: 100px;
}

/* Overlay to soften the desk background slightly */
.paper-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.sticker-sheet {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    min-height: 180vh;
    padding-bottom: 100px;
}

/* Sticker Base Styles - Hand-drawn/Pencil Feel */
.sticker {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 24px;
    cursor: move;
    user-select: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 3px;
    box-shadow: 
        3px 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    
    /* Hand-drawn border effect */
    border: 3px solid rgba(44, 62, 80, 0.8);
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.15));
    backdrop-filter: blur(2px);
    
    /* TEMPORARILY HIDE ALL STICKERS */
    display: none !important;
}

.sticker::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px dashed rgba(0, 0, 0, 0.08);
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    pointer-events: none;
}

.sticker:hover {
    transform: scale(1.05) rotate(0deg) !important;
    box-shadow: 
        4px 6px 16px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 100 !important;
}

.sticker:active {
    cursor: grabbing;
    transform: scale(1.08) rotate(0deg) !important;
}

/* Header Sticker */
.sticker-header {
    top: 80px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
    width: 520px;
    background: linear-gradient(135deg, #FFF4B8 0%, #FFE38E 100%);
    border-color: #FF9AA2;
    z-index: 10;
}

.sticker-header h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #2c3e50;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.tagline {
    font-size: 1.2em;
    color: #34495e;
}

/* About Sticker */
.sticker-about {
    top: 320px;
    left: 120px;
    width: 380px;
    background: linear-gradient(135deg, #C7CEEA 0%, #B5DEFF 100%);
    border-color: #8E9EE8;
    z-index: 9;
}

/* Project Stickers */
.sticker-project {
    width: 340px;
    background: linear-gradient(135deg, #DDB8FF 0%, #C9A0FF 100%);
    border-color: #B388EB;
    color: #2c3e50;
}

.sticker-project:nth-of-type(4) {
    top: 320px;
    right: 140px;
    z-index: 8;
    transform: rotate(2deg);
}

.sticker-project:nth-of-type(5) {
    top: 640px;
    left: 50%;
    transform: translateX(-50%) rotate(-1.5deg);
    background: linear-gradient(135deg, #FFB3BA 0%, #FFA3B5 100%);
    border-color: #FF8FA3;
    z-index: 7;
}

.sticker-project:nth-of-type(6) {
    top: 960px;
    right: 180px;
    background: linear-gradient(135deg, #BFFCC6 0%, #A8E6CF 100%);
    border-color: #7FCBA4;
    color: #2c3e50;
    z-index: 6;
    transform: rotate(1.5deg);
}

/* Skills Sticker */
.sticker-skills {
    top: 660px;
    left: 100px;
    width: 320px;
    background: linear-gradient(135deg, #FFDAB9 0%, #FFD1A3 100%);
    border-color: #FFB88C;
    z-index: 5;
    transform: rotate(-2deg);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 50px 25px 50px 25px/25px 50px 25px 50px;
    border: 2.5px solid rgba(44, 62, 80, 0.7);
    font-size: 0.95em;
    display: inline-block;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Sticker */
.sticker-contact {
    top: 980px;
    left: 140px;
    width: 300px;
    background: linear-gradient(135deg, #B4E7FF 0%, #9DD9FF 100%);
    border-color: #7BBFEA;
    color: #2c3e50;
    z-index: 4;
    transform: rotate(1deg);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

/* Quote Sticker */
.sticker-quote {
    top: 1300px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
    width: 420px;
    background: linear-gradient(135deg, #FFF9B8 0%, #FFFFCC 100%);
    border-color: #FFD699;
    z-index: 3;
}

.quote {
    font-family: 'Indie Flower', cursive;
    font-size: 1.3em;
    font-style: italic;
    color: #2c3e50;
    text-align: center;
}

/* Small Decorative Stickers */
.sticker-small {
    width: 90px;
    height: 90px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
}

.sticker-small:nth-of-type(9) {
    top: 220px;
    left: 50%;
    margin-left: -250px;
    z-index: 11;
    background: linear-gradient(135deg, #FFCCF9 0%, #FFB3F0 100%);
    border-color: #FF9AE6;
}

.sticker-small:nth-of-type(10) {
    top: 540px;
    right: 100px;
    z-index: 11;
    background: linear-gradient(135deg, #FFE8B8 0%, #FFD699 100%);
    border-color: #FFC266;
}

.sticker-small:nth-of-type(11) {
    top: 1180px;
    right: 320px;
    z-index: 11;
    background: linear-gradient(135deg, #E0BBE4 0%, #D4A5D7 100%);
    border-color: #C28DC4;
}

/* Add more decorative stickers */
.sticker-small:nth-of-type(12) {
    top: 850px;
    left: 50%;
    margin-left: 200px;
    z-index: 11;
    background: linear-gradient(135deg, #B8E8FF 0%, #9AD9FF 100%);
    border-color: #6EC7F5;
}

.sticker-small:nth-of-type(13) {
    top: 460px;
    left: 50%;
    margin-left: -400px;
    z-index: 11;
    background: linear-gradient(135deg, #C4FAD0 0%, #A8E6B8 100%);
    border-color: #8ACE9B;
}

.emoji {
    font-size: 2.5em;
    filter: grayscale(0.2);
}

/* Typography */
h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8em;
    margin-bottom: 12px;
}

h3 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.4em;
    margin-bottom: 8px;
}

p {
    line-height: 1.6;
    font-size: 1.1em;
}

/* Links with Sketchy Feel */
.sketch-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 2px;
    display: inline-block;
    transition: transform 0.2s ease;
    font-weight: bold;
}

.sketch-link:hover {
    transform: translateY(-2px);
    border-bottom-width: 3px;
}

/* Corner Note */
.corner-note {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #FFF4B8 0%, #FFE8A3 100%);
    padding: 14px 22px;
    border: 3px solid rgba(44, 62, 80, 0.8);
    border-radius: 15px 255px 15px 225px/225px 15px 255px 15px;
    font-family: 'Indie Flower', cursive;
    font-size: 1.1em;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: bounce 2s ease-in-out infinite;
    backdrop-filter: blur(3px);
    
    /* TEMPORARILY HIDE */
    display: none !important;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFB3BA 0%, #BFDFFF 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FFA3B5 0%, #A8D5FF 100%);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .paper-background {
        padding: 40px 30px 80px;
    }
    
    .sticker-sheet {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .paper-background {
        background-size: cover;
        background-position: center;
        min-height: 100vh;
        padding: 30px 20px 60px;
    }
    
    .sticker-sheet {
        padding: 0 10px 60px;
        min-height: auto;
    }
    
    .sticker {
        position: relative !important;
        margin: 25px auto;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        max-width: 90%;
        transform: none !important;
    }
    
    .sticker-header {
        width: 100%;
        max-width: 500px;
    }
    
    .corner-note {
        display: none;
    }
}

@media (max-width: 768px) {
    .paper-background {
        padding: 20px 15px 40px;
    }
    
    .sticker-header h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .sticker {
        padding: 18px;
        margin: 20px auto;
    }
    
    .sticker-small {
        width: 75px;
        height: 75px;
    }
    
    .emoji {
        font-size: 2em;
    }
}

/* Dragging State */
.dragging {
    opacity: 0.8;
    z-index: 1000 !important;
}

/* Add subtle floating animation to decorative stickers */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation));
    }
    50% {
        transform: translateY(-15px) rotate(var(--rotation));
    }
}

.sticker-small {
    animation: float 3s ease-in-out infinite;
}

.sticker-small:nth-of-type(9) {
    animation-delay: 0s;
    --rotation: 15deg;
}

.sticker-small:nth-of-type(10) {
    animation-delay: 0.5s;
    --rotation: -10deg;
}

.sticker-small:nth-of-type(11) {
    animation-delay: 1s;
    --rotation: 8deg;
}

.sticker-small:nth-of-type(12) {
    animation-delay: 1.5s;
    --rotation: -12deg;
}

.sticker-small:nth-of-type(13) {
    animation-delay: 2s;
    --rotation: 6deg;
}

/* Pulsing glow on hover for links */
.sketch-link:hover {
    transform: translateY(-2px);
    border-bottom-width: 3px;
    animation: glow 1.5s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

/* Prevent animations during drag */
.dragging.sticker-small {
    animation: none !important;
}

/* Add texture overlay for more authentic sticker feel */
.sticker-content {
    position: relative;
}

/* Subtle scale animation on page load for main stickers */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(var(--rotation, 0deg));
    }
}
