/* Start menu styles */
.start-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 220px;
    background: linear-gradient(135deg, #c0c0c0, #f0f0f0);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    overflow: hidden;
    font-family: 'Comic Neue', cursive;
}

.start-header {
    background: linear-gradient(to right, #ff3399, #9933ff);
    padding: 10px;
    display: flex;
    align-items: center;
}

.start-header-text {
    color: white;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    transform: rotate(-90deg);
    transform-origin: left center;
    text-shadow: 2px 2px 0 #000;
    margin-left: 25px;
}

.start-items {
    padding: 8px 0;
}

.start-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.start-item:hover {
    background-color: #3366ff;
    color: white;
}

.start-item img {
    margin-right: 10px;
}

.start-separator {
    height: 1px;
    background: #808080;
    margin: 5px 0;
    border-bottom: 1px solid white;
}

/* Shutdown screen */
.shutdown-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shutdown-message {
    font-family: 'VT323', monospace;
    color: #fff;
    font-size: 2rem;
    text-align: center;
}/* Banner notification styles */
.banner-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    width: auto;
    max-width: 80%;
    background: linear-gradient(135deg, #3366ff, #33ccff);
    color: white;
    border-top: 2px solid #4477ff;
    border-left: 2px solid #4477ff;
    border-right: 2px solid #002299;
    border-bottom: 2px solid #002299;
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: transform 0.3s ease-out;
    font-family: 'Comic Neue', cursive;
}

.banner-notification.show {
    transform: translateX(-50%) translateY(0);
}

.banner-content {
    display: flex;
    align-items: center;
}

.banner-content img {
    margin-right: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: white;
    padding: 2px;
}

.banner-content span {
    font-weight: bold;
    text-shadow: 1px 1px 0 #000;
}

.banner-close {
    margin-left: 15px;
    cursor: pointer;
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.2s;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Improve button animation for desktop icons */
.desktop-icon.bounce {
    animation: bounce 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite alternate;
}

/* Improve hover effect for footer links */
.footer-links a:hover {
    color: #ffff00;
    transform: scale(1.1);
    display: inline-block;
    text-decoration: underline;
}/* Make modal windows draggable visually */
.modal-window.dragging {
    opacity: 0.9;
    cursor: grabbing;
}

/* Make modals maximized */
.modal-window.maximized {
    width: 90% !important;
    height: 80% !important;
    top: 50px !important;
    left: 5% !important;
}

/* Button styling & interactions */
.modal-button:hover,
.wallet-button:hover,
.buy-button:hover,
.recycle-button:hover,
.item-button:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-button:active,
.wallet-button:active,
.buy-button:active,
.recycle-button:active,
.item-button:active {
    transform: scale(0.95);
}/* Modal styles for desktop icons */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
}

.modal-window {
    background: linear-gradient(135deg, #c0c0c0, #f0f0f0);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    position: absolute;
    top: 100px;
    left: 100px;
    width: 600px;
    border-radius: 8px;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    pointer-events: auto;
    display: none;
}

.modal-title {
    background: linear-gradient(to right, #3366ff, #33ccff);
    color: #fff;
    padding: 8px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #000;
}

.modal-content {
    background: #f0f0f0;
    padding: 20px;
    max-height: 500px;
    overflow-y: auto;
}

/* Financial Penguin modal styles */
.modal-content-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
}

.modal-sidebar {
    background: linear-gradient(135deg, #ccffff, #99ccff);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-penguin-image {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    border: 3px solid #000;
    border-radius: 100%;
    background: white;
    padding: 5px;
}

.modal-stats {
    width: 100%;
}

.modal-stats h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    color: #3366ff;
    margin-bottom: 10px;
    text-align: center;
}

.modal-stats ul {
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
    list-style-type: none;
    padding-left: 5px;
}

.modal-stats li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.modal-stats li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff3399;
}

.modal-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100px;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
}

.chart-bar {
    width: 20%;
    background: linear-gradient(to top, #ff3399, #ff6600);
    border-top: 2px solid #ffffff;
    position: relative;
}

.chart-bar::after {
    content: attr(data-value);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'VT323', monospace;
    font-size: 0.9rem;
    white-space: nowrap;
}

.modal-main {
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.modal-main h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    color: #ff3399;
    margin-bottom: 20px;
    text-align: center;
}

.modal-advice {
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.modal-advice p {
    margin-bottom: 15px;
    line-height: 1.4;
}

.modal-actions {
    display: flex;
    justify-content: space-around;
}

.modal-button {
    background: linear-gradient(to bottom, #33ccff, #0099cc);
    color: white;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.1rem;
    padding: 8px 15px;
    border: none;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    border-radius: 5px;
    cursor: pointer;
    text-shadow: 1px 1px 0 #000;
}

.modal-button:active {
    border-top: 2px solid #808080;
    border-left: 2px solid #808080;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

/* PenguCoin Wallet modal styles */
.wallet-container {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #e6f7ff, #ccf2ff);
    border-radius: 10px;
    padding: 20px;
}

.wallet-balance {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wallet-balance h2 {
    color: #3366ff;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.balance-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ff3399;
}

.balance-amount span {
    font-size: 1.5rem;
    color: #3366ff;
}

.balance-usd {
    color: #666;
    font-size: 1.1rem;
}

.wallet-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.wallet-button {
    flex: 1;
    margin: 0 10px;
    padding: 12px;
    font-family: 'Bubblegum Sans', cursive;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    text-align: center;
}

.send-button {
    background: linear-gradient(to bottom, #ff6666, #cc3333);
    color: white;
    text-shadow: 1px 1px 0 #000;
}

.receive-button {
    background: linear-gradient(to bottom, #66cc66, #339933);
    color: white;
    text-shadow: 1px 1px 0 #000;
}

.swap-button {
    background: linear-gradient(to bottom, #9966cc, #6633aa);
    color: white;
    text-shadow: 1px 1px 0 #000;
}

.wallet-history {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wallet-history h3 {
    font-family: 'Bubblegum Sans', cursive;
    color: #3366ff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.transaction {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.transaction:last-child {
    border-bottom: none;
}

.transaction-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 15px;
    color: white;
}

.transaction-icon.received {
    background: linear-gradient(135deg, #66cc66, #339933);
}

.transaction-icon.sent {
    background: linear-gradient(135deg, #ff6666, #cc3333);
}

.transaction-details {
    flex-grow: 1;
}

.transaction-title {
    font-weight: bold;
    color: #333;
}

.transaction-date {
    font-size: 0.9rem;
    color: #666;
}

.transaction-amount {
    font-weight: bold;
}

.transaction:nth-child(odd) {
    background-color: #f9f9f9;
}

/* Fish Market modal styles */
.market-container {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #ffffcc, #ffff99);
    border-radius: 10px;
    padding: 20px;
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.market-status {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
}

.status-indicator.up {
    background: linear-gradient(135deg, #66cc66, #339933);
    box-shadow: 0 0 10px rgba(102, 204, 102, 0.7);
}

.status-indicator.down {
    background: linear-gradient(135deg, #ff6666, #cc3333);
    box-shadow: 0 0 10px rgba(255, 102, 102, 0.7);
}

.status-text {
    font-weight: bold;
    color: #333;
}

.market-search {
    display: flex;
}

.market-search input {
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 20px 0 0 20px;
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    width: 200px;
}

.market-search button {
    background: linear-gradient(to bottom, #3366ff, #0033cc);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 0 20px 20px 0;
    font-family: 'Bubblegum Sans', cursive;
    cursor: pointer;
}

.market-tabs {
    display: flex;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    font-family: 'Bubblegum Sans', cursive;
    background: #f0f0f0;
    border: none;
    border-top: 2px solid #ddd;
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    margin-right: 5px;
    cursor: pointer;
}

.tab-button.active {
    background: white;
    border-top: 2px solid #3366ff;
    border-left: 2px solid #3366ff;
    border-right: 2px solid #3366ff;
    color: #3366ff;
}

.market-table {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.market-table table {
    width: 100%;
    border-collapse: collapse;
}

.market-table th {
    text-align: left;
    padding: 12px 15px;
    background: #f0f0f0;
    font-family: 'Bubblegum Sans', cursive;
    color: #3366ff;
}

.market-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.market-table tr:last-child td {
    border-bottom: none;
}

.market-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.market-table .up {
    color: #339933;
    font-weight: bold;
}

.market-table .down {
    color: #cc3333;
    font-weight: bold;
}

.buy-button {
    background: linear-gradient(to bottom, #66cc66, #339933);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Bubblegum Sans', cursive;
    cursor: pointer;
    text-shadow: 1px 1px 0 #000;
}

/* Recycle Fin modal styles */
.recycle-container {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #e6e6e6, #f0f0f0);
    border-radius: 10px;
    padding: 20px;
}

.recycle-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.recycle-icon {
    margin-right: 15px;
}

.recycle-info {
    flex-grow: 1;
}

.recycle-info h3 {
    font-family: 'Bubblegum Sans', cursive;
    color: #3366ff;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.recycle-actions {
    display: flex;
}

.recycle-button {
    background: linear-gradient(to bottom, #ff6666, #cc3333);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Bubblegum Sans', cursive;
    margin-left: 10px;
    cursor: pointer;
    text-shadow: 1px 1px 0 #000;
}

.recycle-items {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.recycle-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.recycle-item:last-child {
    border-bottom: none;
}

.item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    color: #3366ff;
}

.item-details {
    flex-grow: 1;
}

.item-name {
    font-weight: bold;
    color: #333;
}

.item-date {
    font-size: 0.9rem;
    color: #666;
}

.item-actions {
    display: flex;
}

.item-button {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 5px;
    cursor: pointer;
    font-family: 'Comic Neue', cursive;
}

.recycle-footer {
    background: white;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    color: #666;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Styling for the terminal input loading state */
.terminal-message.loading {
    animation: blinking 1s infinite;
}

@keyframes blinking {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Notification system */
.penguin-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    border-radius: 8px;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    animation: notification-appear 0.3s ease-out;
}

.penguin-notification.notification-closing {
    animation: notification-disappear 0.3s ease-in forwards;
}

@keyframes notification-appear {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes notification-disappear {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
}

.notification-header {
    background: linear-gradient(to right, #3366ff, #33ccff);
    color: #fff;
    padding: 8px 12px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 1px 1px 0 #000;
    border-radius: 8px 8px 0 0;
}

.notification-close {
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    background: linear-gradient(to bottom, #ff6666, #cc3333);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #808080;
    border-bottom: 1px solid #808080;
}

.notification-content {
    padding: 15px;
    display: flex;
    align-items: flex-start;
}

.notification-icon {
    margin-right: 15px;
}

.notification-message {
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
    flex-grow: 1;
}

.notification-footer {
    display: flex;
    justify-content: center;
    padding: 0 15px 15px;
}

.notification-button {
    background: linear-gradient(to bottom, #3366ff, #0033cc);
    color: #fff;
    border: none;
    border-top: 2px solid #4477ff;
    border-left: 2px solid #4477ff;
    border-right: 2px solid #002299;
    border-bottom: 2px solid #002299;
    border-radius: 5px;
    padding: 8px 25px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1rem;
    cursor: pointer;
    text-shadow: 1px 1px 0 #000;
}/* CSS Styles for PENGUINOMY 95 */

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

body {
    font-family: 'Comic Neue', cursive;
    background-color: #00ccff;
    color: #333;
    overflow-x: hidden;
    background-image: linear-gradient(45deg, #00ccff 25%, #33d6ff 25%, #33d6ff 50%, #00ccff 50%, #00ccff 75%, #33d6ff 75%, #33d6ff 100%);
    background-size: 56.57px 56.57px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Windows-style taskbar but more colorful */
.taskbar {
    background: linear-gradient(to right, #ff3399, #ff6600, #ffcc00, #33cc33, #0099ff);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.start-button {
    background: linear-gradient(135deg, #ff3399, #9933ff);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 35px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    margin-right: 10px;
    color: #fff;
    text-shadow: 2px 2px 0 #000;
    border-radius: 5px;
}

.start-button:active {
    border-top: 3px solid #808080;
    border-left: 3px solid #808080;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.taskbar-items {
    display: flex;
    flex-grow: 1;
}

.taskbar-item {
    background: linear-gradient(to bottom, #00ccff, #0099cc);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    padding: 0 15px;
    height: 35px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    cursor: pointer;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
    border-radius: 5px;
}

.taskbar-clock {
    background-color: #c0c0c0;
    border: 3px inset #ffffff;
    padding: 0 10px;
    height: 35px;
    display: flex;
    align-items: center;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000080;
    border-radius: 5px;
}

/* Windows style desktop icons but more colorful */
.desktop-icons {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.desktop-icon {
    width: 90px;
    margin-bottom: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.desktop-icon:hover {
    transform: scale(1.1);
}

.desktop-icon img {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
    border: 3px solid #fff;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.desktop-icon p {
    font-family: 'Bubblegum Sans', sans-serif;
    font-size: 1rem;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3px 5px;
    border-radius: 10px;
}

header {
    background: linear-gradient(to right, #9933ff, #3366ff);
    padding: 15px 0;
    border-bottom: 6px solid #ff3399;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 3rem;
    color: #fff;
    text-shadow: 3px 3px 0 #000, -3px 3px 0 #000, -3px -3px 0 #000, 3px -3px 0 #000;
    transform: rotate(-3deg);
    display: inline-block;
    padding: 10px;
    background: linear-gradient(to right, #ff3399, #ff6600);
    border-radius: 15px;
    border: 4px solid #000;
    animation: wobble 5s infinite;
}

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

    50% {
        transform: rotate(3deg);
    }
}

/* Windows-style menu but more colorful */
.nav-links {
    display: flex;
    list-style: none;
    background: linear-gradient(to right, #33cc33, #00ccff);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    padding: 2px;
    border-radius: 30px;
}

.nav-links li {
    margin-left: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Bubblegum Sans', cursive;
    padding: 8px 15px;
    display: block;
    transition: all 0.3s;
    text-shadow: 1px 1px 0 #000;
}

.nav-links a:hover {
    background-color: #ff3399;
    color: #fff;
    border-radius: 20px;
    transform: scale(1.1);
}

/* Windows-style windows but more colorful */
.window {
    background: linear-gradient(135deg, #c0c0c0, #f0f0f0);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    margin: 30px 0;
    position: relative;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    overflow: hidden;
}

.window-title {
    background: linear-gradient(to right, #3366ff, #33ccff);
    color: #fff;
    padding: 8px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #000;
}

.window-buttons {
    display: flex;
}

.window-button {
    width: 25px;
    height: 25px;
    background: linear-gradient(to bottom, #ffcc00, #ff9900);
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    margin-left: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50%;
    color: #000;
    font-weight: bold;
}

.window-content {
    padding: 20px;
}

/* Penguin Financial Agent Terminal - more colorful */
.terminal-window {
    background: linear-gradient(135deg, #c0c0c0, #f0f0f0);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    margin: 40px 0;
    position: relative;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    overflow: hidden;
}

.terminal-title {
    background: linear-gradient(to right, #ff3399, #ff6600);
    color: #fff;
    padding: 8px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #000;
}

.terminal-content {
    background-color: #000;
    background-image: radial-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    color: #00ff00;
    font-family: 'VT323', monospace;
    padding: 20px;
    height: 320px;
    overflow-y: auto;
    display: flex;
    border: 5px solid #00cc00;
    border-top: none;
}

.terminal-penguin {
    flex: 0 0 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    margin-right: 15px;
}

.terminal-penguin img {
    width: 120px;
    height: 140px;
    margin-bottom: 10px;
    border: 3px solid #00ff00;
    border-radius: 10px;
}

.terminal-chat {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.terminal-messages {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 15px;
}

.terminal-message {
    margin-bottom: 15px;
    animation: typewriter 0.5s steps(40, end);
    text-shadow: 0 0 5px #00ff00;
    font-size: 1.2rem;
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.terminal-input-area {
    display: flex;
    border-top: 2px solid #00ff00;
    padding-top: 15px;
}

.terminal-prompt {
    color: #00ff00;
    margin-right: 10px;
    font-weight: bold;
    text-shadow: 0 0 5px #00ff00;
    font-size: 1.2rem;
}

.terminal-input {
    background-color: transparent;
    border: none;
    color: #00ff00;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    flex-grow: 1;
    outline: none;
    text-shadow: 0 0 5px #00ff00;
}

/* Hero section redesigned as a window - more colorful */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    overflow: hidden;
    padding: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
    background: linear-gradient(135deg, #ccffff, #99ccff);
    border-radius: 15px;
    padding: 20px;
    max-width: 40%;
    margin-right: 20px;
}

.hero-text {
    flex: 2;
    padding: 25px;
    background: url('/api/placeholder/400/400') center/cover;
    position: relative;
    border-radius: 15px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Ensure no unwanted nested hero elements */
.window-content .hero {
    margin: 0;
    border: none;
}

.hero-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 0;
}

.hero-text h1 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: #ff3399;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 0 #fff, 3px 3px 0 #000;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #333;
    font-family: 'Comic Neue', cursive;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(to right, #ff3399, #ff6600);
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-family: 'Bubblegum Sans', cursive;
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    transition: all 0.2s;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    text-shadow: 2px 2px 0 #000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    transform: scale(1.1) rotate(-3deg);
}

.btn:active {
    border-top: 3px solid #808080;
    border-left: 3px solid #808080;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

/* Features as program icons - more colorful */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:nth-child(1) {
    background: linear-gradient(135deg, #ccffff, #99ccff);
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, #ffccff, #ff99cc);
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, #ffffcc, #ffcc99);
}

.feature-card:hover {
    transform: translateY(-10px) rotate(3deg);
    box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.3);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border: 3px solid #000;
    border-radius: 15px;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.feature-card h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #3366ff;
    text-shadow: 1px 1px 0 #fff;
}

.feature-card p {
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Meme section as a window - more colorful */
.meme-section {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    margin: 40px 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.meme-title {
    background: linear-gradient(to right, #ff6600, #ffcc00);
    color: #fff;
    padding: 10px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #000;
}

.meme-content {
    padding: 25px;
    background: linear-gradient(135deg, #ffffcc, #ffff99);
}

.memes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.meme-card {
    background-color: #ffffff;
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.meme-card:hover {
    transform: translateY(-10px) rotate(3deg);
    box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.3);
}

.meme-card img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 3px solid #ff6600;
}

.meme-caption {
    padding: 20px;
    text-align: center;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    color: #000;
    background: linear-gradient(to bottom, #ffff99, #ffcc66);
}

/* Penguinomics section as a window - more colorful */
.penguinomics {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    margin: 40px 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.penguinomics-title {
    background: linear-gradient(to right, #3366ff, #33ccff);
    color: #fff;
    padding: 10px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #000;
}

.penguinomics-content {
    display: flex;
    padding: 25px;
    background: linear-gradient(135deg, #e6f7ff, #ccf2ff);
}

.penguinomics-text {
    flex: 2;
    padding-right: 25px;
}

.penguinomics-image {
    flex: 1;
    text-align: center;
}

.penguin-coin {
    width: 500px;
}

.penguinomics-text p {
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: bold;
}

/* Quotes section as a window - more colorful */
.penguin-quotes {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    margin: 40px 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quotes-title {
    background: linear-gradient(to right, #ff3399, #cc33ff);
    color: #fff;
    padding: 10px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #000;
}

.quotes-content {
    padding: 25px;
    background: linear-gradient(135deg, #ffccff, #f2ccff);
}

.quotes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.quote-card {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    padding: 25px;
    position: relative;
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.quote-card::before {
    content: "" ";
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 120px;
    color: #ff3399;
    opacity: 0.2;
    font-family: serif;
}

.quote-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #000;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.quote-author {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.1rem;
    text-align: right;
    color: #3366ff;
}

footer {
    background: linear-gradient(to right, #3366ff, #33ccff);
    color: #fff;
    padding: 25px 0;
    text-align: center;
    position: relative;
    border-top: 3px solid #ffffff;
    margin-bottom: 45px;
    /* Space for taskbar */
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 0 #000;
}

.footer-links {
    display: flex;
    list-style: none;
}

.footer-links li {
    margin-left: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    transition: all 0.3s;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000;
}

.footer-links a:hover {
    color: #ffff00;
    transform: scale(1.1);
    display: inline-block;
}

.copyright {
    margin-top: 20px;
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    text-shadow: 1px 1px 0 #000;
}

/* Windows dialog box - more colorful */
.dialog-box {
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    padding: 15px;
    width: 350px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dialog-title {
    background: linear-gradient(to right, #ff3399, #ff6600);
    color: #fff;
    padding: 8px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 10px;
    text-shadow: 2px 2px 0 #000;
}

.dialog-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.dialog-icon {
    margin-right: 15px;
}

.dialog-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    font-weight: bold;
}

.dialog-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dialog-button {
    padding: 8px 20px;
    background: linear-gradient(to bottom, #33ccff, #0099cc);
    font-family: 'Bubblegum Sans', cursive;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.dialog-button:hover {
    transform: scale(1.1);
}

.dialog-button:active {
    border-top: 2px solid #808080;
    border-left: 2px solid #808080;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

/* Animation Classes */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.rotate {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.shake {
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Rainbow text animation */
.rainbow-text {
    animation: rainbow 5s linear infinite;
}

@keyframes rainbow {
    0% {
        color: #ff3399;
    }

    20% {
        color: #ff6600;
    }

    40% {
        color: #ffcc00;
    }

    60% {
        color: #33cc33;
    }

    80% {
        color: #3366ff;
    }

    100% {
        color: #9933ff;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links a {
        font-size: 1rem;
        padding: 6px 10px;
    }

    .logo {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 15px;
        width: 100%;
    }

    .nav-links li {
        flex: 1;
        text-align: center;
    }

    .hero,
    .penguinomics-content {
        flex-direction: column;
    }

    .features,
    .memes,
    .quotes-container {
        grid-template-columns: 1fr;
    }

    .terminal-content {
        flex-direction: column;
        height: 450px;
    }

    .terminal-penguin {
        margin-bottom: 20px;
    }

    .desktop-icons {
        display: none;
    }
}