/* --- macOS Windows --- */
.mac-window {
    top: 40px;
    width: clamp(280px, 90vw, 500px); /* min 280px, max 500px */
    max-height: 90vh;
    overflow: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: white;
    position: absolute;
    user-select: none;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mac-window.show {
    opacity: 1;
    transform: scale(1);
}

.title-bar {
    background: #e0e0e0;
    padding: 6px 10px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: move;
}

.traffic-lights {
    display: flex;
    gap: 8px;
}

.traffic-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #ff605c; }
.yellow { background: #ffbd44; }
.green { background: #00ca4e; }

.title {
    position: absolute;
    left: 0; right: 0;
    text-align: center;
    font-weight: bold;
    color: #333;
    font-size: 14px;
    pointer-events: none;
}

.content {
    text-align: center;
}

/* --- Content Formatting --- */

.socials-button {
    width: 90%;
    height: 48px;
    font-size: 18px;
}