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

body {
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 25%, #fecfef 50%, #b3ffab 75%, #9df9ff 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Doodles */
.background-doodles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.doodle {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.doodle.star { top: 10%; left: 15%; animation-delay: 0s; }
.doodle.heart { top: 20%; right: 20%; animation-delay: 1s; }
.doodle.rocket { bottom: 25%; left: 10%; animation-delay: 2s; }
.doodle.coffee { bottom: 15%; right: 15%; animation-delay: 3s; }
.doodle.code { top: 60%; left: 5%; animation-delay: 4s; }
.doodle.music { top: 40%; right: 10%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: 20px;
}

/* Header */
.main-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 20;
}

.messy-title {
    font-size: 3.5rem;
    color: #333;
    text-shadow: 3px 3px 0px #ff6b6b, 6px 6px 0px #4ecdc4, 9px 9px 0px #45b7d1;
    transform: rotate(-2deg);
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    transform: rotate(1deg);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    border: 3px dashed #ff6b6b;
}

/* Windows Container */
.windows-container {
    position: relative;
    min-height: 80vh;
    margin-bottom: 40px;
}

/* Window Styles */
.window {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid;
    min-width: 280px;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: grab;
    z-index: 15;
}

.window:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 25;
}

.window:active {
    cursor: grabbing;
}

/* Window Colors */
.about-window { border-color: #ff6b6b; transform: rotate(-3deg); }
.projects-window { border-color: #4ecdc4; transform: rotate(2deg); }
.status-window { border-color: #45b7d1; transform: rotate(-1deg); }
.random-window { border-color: #96ceb4; transform: rotate(3deg); }
.music-window { border-color: #feca57; transform: rotate(-2deg); }
.terminal-window { border-color: #ff9ff3; transform: rotate(1deg); }

.window-header {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 10px 15px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.window-title {
    font-size: 14px;
}

.window-controls {
    display: flex;
    gap: 5px;
}

.control {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.control:hover {
    transform: scale(1.2);
}

.control.minimize { background: #feca57; color: #333; }
.control.maximize { background: #1dd1a1; color: #333; }
.control.close { background: #ff6b6b; color: white; }

.window-content {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Project Badges */
.project-badges {
    margin: 10px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid #ff6b6b;
}

/* Status Items */
.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 13px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.green { background: #1dd1a1; }
.status-indicator.yellow { background: #feca57; }
.status-indicator.red { background: #ff6b6b; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Random Button */
.random-btn {
    background: linear-gradient(45deg, #96ceb4, #ffeaa7);
    border: 3px solid #00b894;
    border-radius: 25px;
    padding: 8px 15px;
    font-family: inherit;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.random-btn:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

/* Music Player */
.music-player {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.album-art {
    font-size: 48px;
    text-align: center;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.track-info {
    text-align: center;
    font-size: 12px;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.player-btn {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    border: 2px solid #ff6b6b;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.player-btn:hover {
    transform: scale(1.1);
}

/* Terminal */
.terminal-content {
    background: #2d3748;
    color: #68d391;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    border-radius: 0 0 12px 12px;
    padding: 15px;
    margin: -20px;
    margin-top: 0;
}

.terminal-line {
    margin: 3px 0;
}

.cursor {
    animation: blink 1s infinite;
}

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

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    border: 3px dashed #4ecdc4;
    color: #333;
    font-size: 14px;
    transform: rotate(-1deg);
}

.footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .messy-title {
        font-size: 2.5rem;
    }
    
    .window {
        position: relative !important;
        transform: none !important;
        margin: 20px auto;
        display: block;
        max-width: 90%;
    }
    
    .windows-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .window:hover {
        transform: scale(1.02) !important;
    }
}

/* Fun Hover Effects */
.window:nth-child(odd):hover {
    animation: wiggle 0.5s ease-in-out;
}

.window:nth-child(even):hover {
    animation: bounce 0.5s ease-in-out;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

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