/* orbitron-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 400;
    src: url('/static/fonts/orbitron-v34-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* orbitron-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 700;
    src: url('/static/fonts/orbitron-v34-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* orbitron-900 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 900;
    src: url('/static/fonts/orbitron-v34-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* share-tech-mono-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Share Tech Mono';
    font-style: normal;
    font-weight: 400;
    src: url('/static/fonts/share-tech-mono-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', monospace;
    color: #00ffff;
    overflow: hidden;
    height: 100vh;
    background: #000
}

.desktop {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.desktop-background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.desktop-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: -1;
}

/* Taskbar */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    /* background: rgba(0, 0, 0, 0.9); */
    backdrop-filter: blur(10px);
    border-top: 2px solid #00ffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    overflow-x: auto;
}

.taskbar-left {
    display: flex;
    align-items: center;
}

.start-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
    border: 1px solid #ff0080;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
}

.start-button:hover {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 128, 0.2));
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.start-icon {
    font-size: 1.2em;
}

.start-text {
    font-size: 0.9em;
    letter-spacing: 1px;
    color: #ff0080;
}

.taskbar-center {
    margin-left: 10px;
    flex: 1;
    display: flex;
    /* justify-content: center; */
}

.running-apps {
    display: flex;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
    min-width: 0;
    flex-shrink: 1;
}

.taskbar-app {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 1);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8em;
}

.taskbar-app:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    transform: translateY(-1px);
}

.taskbar-app-icon {
    font-size: 1.1em;
}

.taskbar-app-name {
    color: #e0e0e0;
    text-shadow: 0 0 5px rgba(224, 224, 224, 0.3);
}

.taskbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.system-tray {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 5px;
}

.clock {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
    color: #ff6b9d;
    text-shadow: 0 0 8px rgba(255, 107, 157, 0.5);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1em;
    font-family: 'Orbitron', sans-serif;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Start Menu */
.start-menu {
    position: fixed;
    bottom: 50px;
    left: 5px;
    width: 300px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid #00ffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: none;
}

.start-menu.active {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.start-menu-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.start-menu-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.start-menu-apps {
    padding: 20px;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.app-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    transform: translateX(5px);
}

.app-icon {
    font-size: 1.5em;
}

.app-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1em;
    color: #e0e0e0;
}

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

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
}

.desktop-icon:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: scale(1.05);
}

.icon {
    font-size: 2.5em;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.icon-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1em;
    text-align: center;
    color: #e0e0e0;
    text-shadow: 0 0 5px rgba(224, 224, 224, 0.3);
    max-width: 80px;
    word-wrap: break-word;
}

/* Window Container */
#windowContainer {
    position: relative;
    width: 100%;
    height: calc(100vh - 50px);
    z-index: 100;
    pointer-events: none;
}

/* WinBox Customization */
.winbox {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid #00ffff !important;
    border-radius: 15px !important;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3) !important;
    pointer-events: auto !important;
}

.wb-header {
    background: linear-gradient(45deg, #ff0080, #00ffff) !important;
    background: red;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    border-bottom: 1px solid #00ffff !important;
    font-family: 'Orbitron', sans-serif !important;
    font-weight: bold !important;
}

.wb-body {
    background: transparent !important;
    color: #e0e0e0 !important;
    font-family: 'Share Tech Mono', monospace !important;
}
.wb-title {
    font-size: 1.2em !important;
    font-family: 'Share Tech Mono', monospace !important;
}

/* .wb-control {
    background: rgba(255, 0, 128, 0.1) !important;
    border: 1px solid #ff0080 !important;
    color: #ff0080 !important;
    transition: all 0.3s ease !important;
}

.wb-control:hover {
    background: rgba(255, 0, 128, 0.2) !important;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.5) !important;
} */



/* App-specific styles */
.app-window {
    height: 100%;
    overflow-y: auto;
    border-radius: 15px;
}

.app-window h1 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    border-bottom: 3px solid #ff0080;
    padding-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    font-size: 2.2em;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.app-window h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ff0080;
    margin-top: 30px;
    text-shadow: 0 0 8px rgba(255, 0, 128, 0.5);
    font-size: 1.8em;
}

.app-window h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ff6b9d;
    text-shadow: 0 0 6px rgba(255, 107, 157, 0.5);
    font-size: 36px;
}

.app-window p {
    margin-bottom: 20px;
    color: #e0e0e0;
    text-shadow: 0 0 5px rgba(224, 224, 224, 0.3);
    line-height: 1.6;
}

.app-window a {
    color: #00ffff;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.app-window a:hover {
    color: #ff0080;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.8);
    transform: translateY(-2px);
}

/* Radio Styles */
.radio-container {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
}



.player-description {
    text-align: center;
    margin-bottom: 20px;
}

.player-description p {
    color: #e0e0e0;
    font-size: 0.9em;
    margin: 0;
}

.radio-iframe-container {
    /* flex: 1;
    display: flex; */
    align-items: stretch;
    justify-content: center;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    /* border: 1px solid rgba(0, 255, 255, 0.3); */
    overflow: hidden;
}

.radio-iframe {
    width: 100% !important;
    height: 100% !important;
    max-height: 250px !important;
    border-radius: 8px !important;
    background: #000 !important;
    border: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

/* Override any global iframe styles for radio */
.winbox .radio-iframe-container .radio-iframe {
    width: 100% !important;
    height: 100% !important;
    max-height: 250px !important;
    border-radius: 8px !important;
    background: #000 !important;
    border: none !important;
    position: relative !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

/* Override WinBox's .winbox iframe rule specifically for radio */
.winbox iframe.radio-iframe {
    position: relative !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

.player-info {
    text-align: center;
    margin-top: 15px;
}

.player-info p {
    color: #888;
    font-size: 0.8em;
    font-style: italic;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-icons {
        top: 10px;
        left: 10px;
        gap: 15px;
    }
    
    .desktop-icon {
        padding: 10px;
    }
    
    .icon {
        font-size: 2em;
    }
    
    .icon-label {
        font-size: 0.7em;
        max-width: 60px;
    }
    
    .start-menu {
        width: 250px;
        left: 10px;
    }
    
    .taskbar {
        padding: 0 10px;
    }
    .status-indicator {
        display: none;
    }

} 