@font-face {
    font-family: 'Departure Mono';
    src: url('DepartureMono-Regular.woff2') format('woff2');
}

body {
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    color: white;
    font-family: 'Departure Mono', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 390px; /* iPhone width */
    position: relative;
    min-height: 100vh;
}

#photo-container {
    width: 100%;
    max-width: 390px;
    padding: 20px;
    box-sizing: border-box;
}

.photo {
    width: 100%;
    margin-bottom: 20px;
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

#add-yours {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #4169e1;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Departure Mono', monospace;
    font-size: 16px;
    text-decoration: none;
    width: 200px;
    max-width: calc(100% - 40px);
    text-align: center;
    z-index: 2;
}

#add-yours:hover {
    background: #3158d0;
}

.credits {
    position: fixed;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 390px;
    text-align: center;
    padding: 5px;
    font-size: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.credits a {
    color: #4169e1;
    text-decoration: none;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    background: #1a1a1a;
    margin: 20% auto;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    text-align: center;
    box-sizing: border-box;
}

.close {
    float: right;
    cursor: pointer;
    font-size: 28px;
}

/* Add this new overlay element */
.bottom-fade {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 390px; /* Match container width */
    height: 200px; /* Adjust height of fade as needed */
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0) 0%,
        rgba(26, 26, 26, 0.9) 70%,
        rgba(26, 26, 26, 1) 100%
    );
    pointer-events: none; /* Allows clicking through the overlay */
    z-index: 1; /* Above photos but below button */
}

.email-button {
    display: inline-block;
    background: #4169e1;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Departure Mono', monospace;
    font-size: 16px;
    text-decoration: none;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.email-button:hover {
    background: #3158d0;
}

.external-link-icon {
    vertical-align: middle;
    margin-left: 4px;
    position: relative;
    top: -1px;
    color: #4169e1; /* Match the link color */
} 