@font-face {
    font-family: 'SF Pro Display';
    src: url('../../../assets/term/font/SF-Pro-Display-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body{
    overflow: hidden;
    background-image: url(../../../assets/macos/bg/Tahoe.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text);
    margin: 0;
    padding: 0;
}

.address-bar {
    background: rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 6px;
    padding: 4px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    min-width: 250px;
    max-width: 500px;
}

.address-bar i {
    font-size: 9px;
    color: #999;
}

.address-bar span {
    color: #555;
    font-size: 11.5px;
}

/* Terminal Window */
.terminal-window {
    background: rgba(30, 30, 30, 0.95) !important;
    backdrop-filter: blur(40px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
}

.terminal-controls {
    background: rgba(50, 50, 50, 0.95) !important;
    backdrop-filter: blur(40px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-title {
    flex: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    user-select: none;
}

.terminal-content {
    width: 100%;
    height: calc(100% - 54px);
    background: rgba(30, 30, 30, 0.95);
    padding: 20px;
    overflow: auto;
    font-family: 'SF Mono', 'Monaco', 'Menlo', 'Courier New', monospace;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.terminal-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.terminal-output {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
}

.terminal-output pre {
    margin: 0;
    color: #e0e0e0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: rgba(255, 255, 255, 0.8);
    margin-left: 2px;
    animation: blink 1s infinite;
}

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





