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

body {
    background-color: #fff; /* Inverted: White */
    color: #000; /* Inverted: Black */
    font-family: 'Courier New', Courier, monospace;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

/* Enter View Styles */
#enter-view {
    z-index: 100;
    background-color: #fff; /* Inverted: White */
    cursor: pointer;
}

#enter-view.hidden {
    opacity: 0;
    pointer-events: none;
}

@font-face {
  font-family: milker; /* set name */
  src: url("https://dopplers.space/Milker.otf"); /* url of the font */
}

.enter-text {
    font-size: 2rem;
    letter-spacing: 2px;
    font-family: milker;
    animation: blink 1.5s infinite;
    user-select: none;
}

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

/* Home View Styles */
#home-view.zoom-out {
    transform: scale(5);
    opacity: 0.2;
    pointer-events: none;
}


#home-view.hidden {
    opacity: 0.2;
    filter: blur(8px);
    pointer-events: none;
}

#home-view.active {
    opacity: 1;
    pointer-events: auto;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ascii-art {
    font-size: 0.8vw;
    line-height: 1;
    white-space: pre;
    text-align: left;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.65rem;
    letter-spacing: 3.5px;
    margin-bottom: 30px;
    font-weight: bold;
    font-family: monospace;
}

.tagline {
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-style: italic;
    font-family: monospace;
    filter: blur(0.5px);
}

.info-btn {
    background-color: #fff; /* Inverted: White */
    color: #000; /* Inverted: Black */
    border: 2px solid #000; /* Inverted: Black border */
    padding: 20px 25px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.info-btn:hover {
    background-color: #000; /* Inverted: Black */
    color: #fff; /* Inverted: White */
}

/* Info View Styles */
#info-view {
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    transform: scale(0.1);
    pointer-events: none;
}

#info-view.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.side-ascii {
    font-size: 0.6vw;
    line-height: 1;
    white-space: pre;
}

.center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 50%;
    height: 100%;
    justify-content: center;
}

.info-box {
    width: 100%;
    height: auto;
    flex-grow: 1;
    max-height: 60vh;
    border: 2px solid #000; /* Inverted: Black border */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    gap: 20px;
    background-color: #fff; /* Inverted: White */
}

.copy-item {
    cursor: pointer;
    padding: 10px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.copy-item:hover {
    background-color: #000; /* Inverted: Black */
    color: #fff; /* Inverted: White */
    border-color: #000; /* Inverted: Black border */
}

.back-btn {
    margin-top: 20px;
}
