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

body {
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: url('assets/xp.jpg') center center / cover no-repeat fixed;
}

/* Translation Modal */
.translation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 100000;
    padding-top: 80px;
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

.translation-modal.hidden {
    display: none;
}

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

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

.translation-modal-content {
    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
    min-width: 350px;
    max-width: 500px;
    animation: slideDown 0.3s ease-out;
}

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

.translation-modal-header {
    background: linear-gradient(to right, #000080, #1084d0);
    color: white;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.translation-modal-icon {
    font-size: 20px;
    line-height: 1;
}

.translation-modal-title {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    font-family: 'MS Sans Serif', sans-serif;
}

.translation-modal-body {
    padding: 25px 20px;
    background: #c0c0c0;
    text-align: center;
}

.translation-modal-text {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #000;
    font-family: 'MS Sans Serif', sans-serif;
}

.translation-modal-text-small {
    font-size: 13px;
    margin: 0;
    color: #333;
    font-family: 'MS Sans Serif', sans-serif;
}

.translation-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px 20px 20px;
    background: #c0c0c0;
}

.translation-modal-btn {
    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    padding: 8px 24px;
    font-size: 12px;
    font-family: 'MS Sans Serif', sans-serif;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    min-width: 100px;
}

.translation-modal-btn:hover {
    background: #dfdfdf;
}

.translation-modal-btn:active {
    border-top: 2px solid #000000;
    border-left: 2px solid #000000;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    padding: 9px 23px 7px 25px;
}

.translation-modal-btn.yes-btn {
    background: linear-gradient(to bottom, #5eac56 0%, #3c873c 50%, #2d6b2d 100%);
    color: white;
    border: 1px solid #16591e;
}

.translation-modal-btn.yes-btn:hover {
    background: linear-gradient(to bottom, #6ec064 0%, #4a9644 50%, #367836 100%);
}

.translation-modal-btn.yes-btn:active {
    background: linear-gradient(to bottom, #4a9644 0%, #2d6b2d 50%, #1e4d1e 100%);
}

#bg-video {
    display: none;
}

/* Top and Bottom Logos */
.logo-top {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    z-index: 1000;
    font-family: 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 2px;
}

.logo-bottom {
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    z-index: 1000;
    font-family: 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 2px;
}

/* Windows Container */
.windows-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Windows 95 Window Styles */
.window {
    position: absolute;
    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.6);
    cursor: default;
    user-select: none;
    overflow: hidden;
}

/* Title Bar */
.title-bar {
    background: linear-gradient(to right, #000080, #1084d0);
    color: white;
    padding: 3px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
}

.title-text {
    flex: 1;
    padding-left: 5px;
}

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

.control-btn {
    width: 16px;
    height: 14px;
    background: #c0c0c0;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    cursor: pointer;
    font-size: 9px;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: 'MS Sans Serif', sans-serif;
}

.control-btn:hover {
    background: #e0e0e0;
}

.control-btn:active {
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

/* Window Content */
.window-content {
    padding: 2px;
    background: #ffffff;
}

/* Main Window */
.main-window {
    bottom: 50px;
    left: 20px;
    width: 550px;
    height: 440px;
}

.main-content {
    background: #000000 url('assets/binance.jpg') center center / cover no-repeat;
    height: calc(100% - 4px);
    position: relative;
    overflow: hidden;
}

/* Logo Text */
.logo-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    font-weight: bold;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.5);
    z-index: 3;
    letter-spacing: 2px;
    white-space: nowrap;
}

.letter {
    display: inline-block;
}

.letter.blue { color: #ffff00; }
.letter.yellow { color: #ffff00; }
.letter.red { color: #ffff00; }
.letter.green { color: #ffff00; }
.letter.black { color: #ffff00; }

/* Secret Banner */
.secret-banner {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ff0000;
    color: #ffff00;
    padding: 6px 20px;
    font-weight: bold;
    font-size: 1.1rem;
    transform: rotate(-20deg);
    z-index: 5;
    border: 2px solid #000;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Character Placeholder */
.character-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    text-align: center;
}

.main-char {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 140px;
    z-index: 4;
}

.main-char-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* World Order */
.world-order {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Button Grid */
.button-grid {
    position: absolute;
    top: 225px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 180px;
}

/* Windows 95 Buttons */
.win95-btn {
    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    padding: 6px 12px;
    font-size: 11px;
    font-family: 'MS Sans Serif', sans-serif;
    cursor: pointer;
    font-weight: bold;
    color: #000;
}

.win95-btn:hover {
    background: #dfdfdf;
}

.win95-btn:active {
    border-top: 2px solid #000000;
    border-left: 2px solid #000000;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    padding: 7px 11px 5px 13px;
}

/* Legends Bar */
.legends-bar {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 70px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
}

.legend-images {
    display: flex;
    gap: 8px;
    flex: 1;
}

.legend-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: rgba(255,255,255,0.6);
}

.legends-label {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Info Window */
.info-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(560px, -190px);
    width: 280px;
    height: 100px;
}

.info-content {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.press-me-btn {
    width: 120px;
}

.fuck-you-text {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.question {
    font-weight: bold;
    font-size: 11px;
    text-align: center;
}

.slider-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
}

.win95-slider {
    width: 100%;
    height: 24px;
    background: #ffffff;
    border-top: 2px solid #808080;
    border-left: 2px solid #808080;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    outline: none;
    -webkit-appearance: none;
}

.win95-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 20px;
    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    cursor: pointer;
}

.win95-slider::-moz-range-thumb {
    width: 12px;
    height: 20px;
    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    cursor: pointer;
}

.info-stats {
    font-size: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
}

/* Character Window */
.character-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(560px, 20px);
    width: 180px;
    height: 160px;
}

.character-window .character-placeholder {
    height: 130px;
}

.character-image {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

/* Orca Window */
.orca-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(560px, 200px);
    width: 180px;
    height: 140px;
}

.orca-window .character-placeholder {
    height: 110px;
}

.orca-image {
    width: 100%;
    height: 110px;
    object-fit: contain;
    display: block;
    background: #ffffff;
}

/* Meme Windows */
.meme1-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-560px, -150px);
    width: 180px;
    height: 160px;
}

.meme2-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-560px, 50px);
    width: 180px;
    height: 160px;
}

.meme3-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-560px, 250px);
    width: 180px;
    height: 160px;
}

.meme4-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(320px, -150px);
    width: 180px;
    height: 160px;
}

.meme5-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(320px, 50px);
    width: 180px;
    height: 160px;
}

.meme6-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(320px, 250px);
    width: 180px;
    height: 160px;
}

.meme-image {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

/* Code Window */
.code-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(350px);
    width: 550px;
    height: 60px;
    cursor: pointer;
}

.code-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    height: 100%;
}

.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    word-break: break-all;
    text-align: center;
    background: #ffffff;
    padding: 5px 8px;
    line-height: 1.4;
}

/* MS Paint Window */
.paint-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(100px, -100px);
    width: 650px;
    height: 715px;
}

.paint-menu {
    position: relative;
    background: #ece9d8;
    border-bottom: 2px solid #808080;
    display: flex;
    padding: 4px 2px;
    font-size: 11px;
    font-family: 'MS Sans Serif', 'Tahoma', sans-serif;
    min-height: 20px;
    z-index: 10;
}

.paint-menu-item {
    padding: 4px 10px;
    cursor: pointer;
    color: #000;
    position: relative;
    line-height: 1;
}

.paint-menu-item:first-child {
    text-decoration: underline;
}

.paint-menu-item:hover {
    background: #316ac5;
    color: #fff;
}

.paint-toolbar {
    position: absolute;
    left: 0;
    top: 32px;
    width: 56px;
    height: calc(100% - 118px);
    background: #c0c0c0;
    border-right: 2px solid #808080;
    border-top: 1px solid #ffffff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    padding: 4px;
    padding-top: 18px;
    align-content: start;
}

.paint-tool {
    width: 22px;
    height: 22px;
    background: #c0c0c0;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #808080;
    border-bottom: 1px solid #808080;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s;
}

.paint-tool:hover {
    background: #d4d4d4;
}

.paint-tool:active, .paint-tool.active {
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    background: #a0a0a0;
}

.paint-tool svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.paint-content {
    position: absolute;
    left: 56px;
    top: 32px;
    right: 0;
    bottom: 86px;
    padding: 0;
    background: #ffffff;
    overflow: auto;
}

.paint-text {
    font-family: 'Kindergarten', 'Comic Sans MS', cursive;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.paint-colorbox {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    height: 64px;
    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-bottom: 1px solid #808080;
    padding: 6px 8px;
    display: flex;
    align-items: center;
}

.paint-color-section {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.paint-color-selector {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.paint-color-current {
    width: 42px;
    height: 42px;
    position: relative;
    border: 1px solid #000;
}

.paint-color-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: #ffffff;
    border: 1px solid #000;
}

.paint-color-fg {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: #000000;
    border: 1px solid #000;
}

.paint-colors-grid {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
    flex: 1;
}

.paint-color {
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    cursor: pointer;
    transition: transform 0.1s;
}

.paint-color:hover {
    transform: scale(1.1);
    border: 2px solid #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.paint-color:active {
    transform: scale(0.95);
}

.paint-statusbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 22px;
    background: #c0c0c0;
    border-top: 1px solid #ffffff;
    border-bottom: 2px solid #808080;
    padding: 3px 8px;
    font-size: 11px;
    font-family: 'MS Sans Serif', sans-serif;
    color: #000;
    display: flex;
    align-items: center;
}

/* Notepad Window */
.notepad-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-450px, -200px);
    width: 600px;
    height: 400px;
}

.notepad-menu {
    background: #f0f0f0;
    border-bottom: 1px solid #808080;
    display: flex;
    padding: 2px 4px;
    font-size: 11px;
    font-family: 'MS Sans Serif', sans-serif;
}

.notepad-menu-item {
    padding: 3px 8px;
    cursor: pointer;
    color: #000;
}

.notepad-menu-item:hover {
    background: #316ac5;
    color: #fff;
}

.notepad-content {
    padding: 0;
    background: #ffffff;
    height: calc(100% - 25px);
    overflow: auto;
}

.notepad-text {
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    color: #000;
    padding: 4px 8px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .main-window {
        width: 450px !important;
        height: 385px !important;
    }
    
    .logo-text {
        font-size: 2.3rem !important;
    }
    
    .info-window,
    .character-window,
    .orca-window {
        width: 160px !important;
    }
    
    .character-window {
        height: 140px !important;
    }
    
    .character-image {
        height: 110px !important;
    }
    
    .orca-window {
        height: 125px !important;
    }
    
    .orca-image {
        height: 95px !important;
    }
    
    .meme1-window,
    .meme2-window,
    .meme3-window,
    .meme4-window,
    .meme5-window,
    .meme6-window {
        width: 160px !important;
        height: 140px !important;
    }
    
    .meme-image {
        height: 110px !important;
    }
}

@media (max-width: 1024px) {
    .main-window {
        width: 400px !important;
        height: 352px !important;
    }
    
    .logo-text {
        font-size: 2.2rem !important;
        top: 15px !important;
    }
    
    .secret-banner {
        font-size: 1rem !important;
        top: 60px !important;
        padding: 5px 15px !important;
    }
    
    .main-char {
        width: 160px !important;
        height: 125px !important;
        top: 80px !important;
    }
    
    .world-order {
        font-size: 0.95rem !important;
        top: 185px !important;
    }
    
    .button-grid {
        top: 210px !important;
        width: 160px !important;
        gap: 5px !important;
    }
    
    .legends-bar {
        height: 50px !important;
    }
    
    .legend-box {
        width: 35px !important;
        height: 35px !important;
    }
    
    .info-window,
    .character-window,
    .orca-window {
        width: 150px !important;
    }
    
    .info-window {
        height: 90px !important;
    }
    
    .character-window {
        height: 130px !important;
    }
    
    .character-window .character-placeholder {
        height: 100px !important;
    }
    
    .character-image {
        height: 100px !important;
    }
    
    .orca-window {
        height: 115px !important;
    }
    
    .orca-window .character-placeholder {
        height: 85px !important;
    }
    
    .orca-image {
        height: 85px !important;
    }
    
    .meme1-window,
    .meme2-window,
    .meme3-window,
    .meme4-window,
    .meme5-window,
    .meme6-window {
        width: 150px !important;
        height: 130px !important;
    }
    
    .meme-image {
        height: 100px !important;
    }
    
    .code-window {
        width: 450px !important;
        height: 55px !important;
    }
    
    .wallet-address {
        font-size: 9px !important;
    }
    
    .notepad-window {
        width: 450px !important;
        height: 350px !important;
    }
    
    .notepad-text {
        font-size: 11px !important;
    }
    
    .paint-window {
        width: 450px !important;
        height: 605px !important;
    }
    
    .paint-text {
        font-size: 16px !important;
    }
    
    .paint-menu {
        padding: 3px 2px !important;
        min-height: 18px !important;
    }
    
    .paint-toolbar {
        width: 52px !important;
        top: 30px !important;
        height: calc(100% - 114px) !important;
        padding-top: 16px !important;
    }
    
    .paint-content {
        left: 52px !important;
        top: 30px !important;
        bottom: 80px !important;
    }
    
    .paint-colorbox {
        height: 58px !important;
        bottom: 20px !important;
        padding: 5px 6px !important;
    }
    
    .paint-color-current {
        width: 38px !important;
        height: 38px !important;
    }
    
    .paint-color-bg,
    .paint-color-fg {
        width: 26px !important;
        height: 26px !important;
    }
    
    .paint-color {
        width: 18px !important;
        height: 18px !important;
    }
}

@media (max-width: 768px) {
    /* Disable zoom on mobile */
    body {
        touch-action: pan-x pan-y !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
    }
    
    * {
        touch-action: manipulation !important;
    }
    
    /* Hide extra windows on mobile - only show paint, main, and contract */
    .notepad-window,
    .character-window,
    .orca-window,
    .meme1-window,
    .meme2-window,
    .meme3-window,
    .meme4-window,
    .meme5-window,
    .meme6-window {
        display: none !important;
    }
    
    .main-window {
        width: 340px !important;
        height: 387px !important;
        z-index: 9999 !important;
    }
    
    .logo-text {
        font-size: 2rem !important;
        top: 15px !important;
    }
    
    .secret-banner {
        font-size: 1rem !important;
        top: 60px !important;
        padding: 4px 15px !important;
    }
    
    .main-char {
        width: 150px !important;
        height: 120px !important;
        top: 90px !important;
    }
    
    .world-order {
        font-size: 0.9rem !important;
        top: 180px !important;
    }
    
    .button-grid {
        top: 205px !important;
        width: 140px !important;
        gap: 4px !important;
    }
    
    .win95-btn {
        font-size: 9px !important;
        padding: 4px 8px !important;
    }
    
    .legends-bar {
        height: 40px !important;
    }
    
    .legend-box {
        width: 28px !important;
        height: 28px !important;
        font-size: 7px !important;
    }
    
    .info-window {
        width: 140px !important;
        height: 80px !important;
    }
    
    .info-content {
        padding: 6px !important;
        gap: 6px !important;
    }
    
    .press-me-btn {
        width: 100px !important;
        font-size: 10px !important;
    }
    
    .fuck-you-text {
        font-size: 18px !important;
    }
    
    .question {
        font-size: 9px !important;
    }
    
    .slider-labels {
        font-size: 8px !important;
    }
    
    .win95-slider {
        height: 18px !important;
    }
    
    .info-stats {
        font-size: 8px !important;
        gap: 4px !important;
    }
    
    .character-window {
        width: 130px !important;
        height: 120px !important;
    }
    
    .character-window .character-placeholder {
        height: 90px !important;
    }
    
    .character-image {
        height: 90px !important;
    }
    
    .orca-window {
        width: 130px !important;
        height: 110px !important;
    }
    
    .orca-window .character-placeholder {
        height: 80px !important;
    }
    
    .orca-image {
        height: 80px !important;
    }
    
    .meme1-window,
    .meme2-window,
    .meme3-window,
    .meme4-window,
    .meme5-window,
    .meme6-window {
        width: 130px !important;
        height: 120px !important;
    }
    
    .meme-image {
        height: 90px !important;
    }
    
    .code-window {
        width: 90% !important;
        max-width: 500px !important;
        height: 50px !important;
        top: 50px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: auto !important;
        position: fixed !important;
        z-index: 10000 !important;
    }
    
    .code-window .title-bar {
        pointer-events: none !important;
        cursor: default !important;
    }
    
    .wallet-address {
        font-size: 7px !important;
        padding: 4px !important;
    }
    
    .notepad-window {
        width: 90% !important;
        max-width: 500px !important;
        height: 280px !important;
    }
    
    .notepad-menu {
        font-size: 9px !important;
    }
    
    .notepad-menu-item {
        padding: 2px 6px !important;
    }
    
    .notepad-text {
        font-size: 9px !important;
        line-height: 1.4 !important;
    }
    
    .paint-window {
        width: 90% !important;
        max-width: 500px !important;
        height: 520px !important;
    }
    
    .paint-text {
        font-size: 12px !important;
        padding: 10px !important;
    }
    
    .paint-menu {
        padding: 2px 1px !important;
        font-size: 9px !important;
    }
    
    .paint-menu-item {
        padding: 3px 6px !important;
    }
    
    .paint-toolbar {
        width: 48px !important;
        height: calc(100% - 105px) !important;
        top: 26px !important;
        padding-top: 14px !important;
    }
    
    .paint-tool {
        width: 20px !important;
        height: 20px !important;
    }
    
    .paint-tool svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .paint-content {
        left: 48px !important;
        top: 26px !important;
        bottom: 74px !important;
    }
    
    .paint-colorbox {
        height: 52px !important;
        bottom: 18px !important;
        padding: 4px 6px !important;
    }
    
    .paint-color-section {
        gap: 8px !important;
    }
    
    .paint-color-current {
        width: 36px !important;
        height: 36px !important;
    }
    
    .paint-color-bg,
    .paint-color-fg {
        width: 24px !important;
        height: 24px !important;
    }
    
    .paint-color {
        width: 16px !important;
        height: 16px !important;
    }
    
    .paint-statusbar {
        font-size: 9px !important;
        height: 18px !important;
        padding: 2px 6px !important;
    }
    
    .title-bar {
        font-size: 9px !important;
        padding: 2px 4px !important;
    }
    
    .control-btn {
        width: 14px !important;
        height: 12px !important;
        font-size: 8px !important;
    }
}

/* Kindergarten Font */
@font-face {
    font-family: 'Kindergarten';
    src: url('assets/kindergarden/Kindergarden Font/Kindergarden.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Windows XP Desktop Icons */
.desktop-icons {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 0;
}

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    padding: 8px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.1s;
}

.desktop-icon:hover {
    background: rgba(49, 106, 197, 0.3);
}

.desktop-icon.selected {
    background: rgba(49, 106, 197, 0.5);
}

.desktop-icon-image {
    width: 64px;
    height: 56px;
    margin-bottom: 4px;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.5));
    position: relative;
    background: linear-gradient(135deg, #ffd95a 0%, #f5c842 50%, #e6b731 100%);
    border-radius: 2px;
    box-shadow: 
        inset -1px -1px 2px rgba(0,0,0,0.2),
        inset 1px 1px 1px rgba(255,255,255,0.5),
        2px 2px 4px rgba(0,0,0,0.3);
}

.desktop-icon-image::before {
    content: '';
    position: absolute;
    top: -4px;
    right: 8px;
    width: 20px;
    height: 6px;
    background: linear-gradient(135deg, #f5c842 0%, #d4a829 100%);
    border-radius: 0 0 2px 2px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.desktop-icon-image img {
    display: none;
}

.desktop-icon-label {
    color: #fff;
    font-size: 11px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    word-wrap: break-word;
    font-family: 'Tahoma', 'Arial', sans-serif;
}

/* Windows XP Taskbar */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, #245edb 0%, #3f8cf3 9%, #245edb 18%, #245edb 92%, #1941a5 100%);
    display: flex;
    align-items: center;
    padding: 0 4px;
    z-index: 10000;
    border-top: 1px solid #2e6fda;
    box-shadow: 0 -1px 3px rgba(0,0,0,0.3);
}

.start-button {
    height: 32px;
    padding: 0 12px 0 8px;
    background: linear-gradient(to bottom, #5eac56 0%, #3c873c 50%, #2d6b2d 100%);
    border: 1px solid #16591e;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transition: all 0.1s;
}

.start-button:hover {
    background: linear-gradient(to bottom, #6ec064 0%, #4a9644 50%, #367836 100%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.start-button:active {
    background: linear-gradient(to bottom, #4a9644 0%, #2d6b2d 50%, #1e4d1e 100%);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.4);
}

.start-button-icon {
    width: 20px;
    height: 20px;
    background: url('assets/logo.jpg') center center / cover;
    border-radius: 2px;
}

.quick-launch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid rgba(255,255,255,0.2);
    height: 32px;
}

.quick-launch-icon {
    width: 32px;
    height: 32px;
    padding: 4px;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.1s;
}

.quick-launch-icon:hover {
    background: rgba(255,255,255,0.2);
}

.quick-launch-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.taskbar-tasks {
    flex: 1;
    display: flex;
    gap: 4px;
    margin-left: 8px;
    overflow-x: auto;
}

.system-tray {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    height: 32px;
    background: rgba(18,112,211,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    margin-left: auto;
}

.system-tray-time {
    color: white;
    font-size: 11px;
    font-family: 'Tahoma', sans-serif;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

/* Start Menu */
.start-menu {
    position: fixed;
    bottom: 42px;
    left: 4px;
    width: 400px;
    background: #ffffff;
    border: 1px solid #0831d9;
    border-radius: 8px 8px 0 0;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    display: none;
    z-index: 10001;
}

.start-menu.active {
    display: block;
}

.start-menu-header {
    background: linear-gradient(to bottom right, #245edb, #3f8cf3);
    padding: 30px 20px 15px 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.start-menu-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.5);
}

.start-menu-user {
    color: white;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Tahoma', sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.start-menu-content {
    display: flex;
}

.start-menu-left {
    flex: 1;
    background: white;
    padding: 8px 0;
}

.start-menu-right {
    width: 180px;
    background: #d3e5fa;
    padding: 8px 0;
    border-left: 1px solid #9bb7e5;
}

.start-menu-item {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 11px;
    font-family: 'Tahoma', sans-serif;
}

.start-menu-item:hover {
    background: #3169c7;
    color: white;
}

.start-menu-item-icon {
    width: 32px;
    height: 32px;
    background: #c0c0c0;
    border-radius: 2px;
}

.start-menu-footer {
    background: #5a8de7;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.start-menu-footer-btn {
    padding: 6px 12px;
    background: linear-gradient(to bottom, #ff8d3f, #ff5f1f);
    border: 1px solid #d94715;
    border-radius: 3px;
    color: white;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.start-menu-footer-btn:hover {
    background: linear-gradient(to bottom, #ffac6f, #ff7f3f);
}

@media (max-width: 768px) {
    .desktop-icons {
        gap: 15px;
        top: 10px;
        left: 10px;
    }
    
    .desktop-icon {
        width: 70px;
        padding: 6px;
    }
    
    .desktop-icon-image {
        width: 56px;
        height: 48px;
    }
    
    .desktop-icon-image::before {
        width: 18px;
        height: 5px;
        right: 6px;
    }
    
    .desktop-icon-label {
        font-size: 10px;
    }
    
    .taskbar {
        height: 35px;
    }
    
    .start-button {
        height: 28px;
        font-size: 10px;
    }
    
    .start-button-icon {
        width: 18px;
        height: 18px;
    }
    
    .quick-launch-icon {
        width: 28px;
        height: 28px;
    }
    
    .system-tray-time {
        font-size: 10px;
    }
    
    .start-menu {
        width: 90%;
        max-width: 350px;
    }
}