@import url("https://fonts.googleapis.com/css?family=Karla");

/* Styles for QR code spacing */
#qrCode {
    display: block;
    border-radius: 4px;
    width: 256px;
    height: 256px;
}

#helpText {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    margin: 0 0 20px;
    letter-spacing: 0.01em;
    line-height: 1.4;
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

.qr-container-wrapper {
    text-align: center;
    color: black;
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #ffffff;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.qr-box {
    background: #ffffff;
    border: 0.5px solid rgba(0, 0, 0, 0.11);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-credit {
    position: fixed;
    bottom: 20px;
    right: 24px;
    display: none;
}

.page-credit a {
    font-size: 10px;
    color: #aaa;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 120ms ease;
}

.page-credit a:hover {
    color: #999;
}

.qr-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.dropdown-container {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: inline-block;
}

.dropdown-text1 {
    display: none;
}

.dropdown-text2 {
    display: none;
}

.dropdown-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-family: "Karla", sans-serif;
    font-size: 20px;
    cursor: pointer;
}

.dropdown-button:hover {
    background-color: #000000;
}

.dropdown-menu {
    position: absolute;
    display: none;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 6px;
    font-size: 18px;
}

.dropdown-menu a {
    color: #000;
    padding: 10px 16px;
    font-size: 18px;
    text-decoration: none;
    display: block;
    border-radius: 6px;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.dropdown-menu.show {
    display: block;
}

body {
    font-family: "Karla", sans-serif;
    background-color: rgb(255, 255, 255);
    max-width: 100vw;
}

/* Instagram interstitial */
#ig-interstitial {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #faf9f7;
    color: #0d0d0d;
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    z-index: 9999;
    display: none;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 48px 32px;
    text-align: center;
    overflow-y: auto;
    box-sizing: border-box;
}
#ig-interstitial * { box-sizing: border-box; margin: 0; padding: 0; }
#ig-interstitial .ig-content { max-width: 310px; width: 100%; }
#ig-interstitial .ig-wordmark {
    font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
    color: #b8a48a; text-transform: uppercase; margin-bottom: 44px;
}
#ig-interstitial .ig-headline {
    font-size: 26px; font-weight: 300; line-height: 1.28;
    color: #0d0d0d; margin-bottom: 10px; letter-spacing: -0.02em;
}
#ig-interstitial .ig-headline strong { font-weight: 500; }
#ig-interstitial .ig-subtext {
    font-size: 13px; line-height: 1.65; color: #909090; margin-bottom: 36px;
}
#ig-interstitial .ig-divider {
    width: 32px; height: 1px; background: #b8a48a; margin: 0 auto 32px;
}
#ig-interstitial .ig-steps { width: 100%; margin-bottom: 36px; }
#ig-interstitial .ig-step {
    display: -webkit-flex; display: flex;
    -webkit-align-items: center; align-items: center;
    gap: 16px; padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07); text-align: left;
}
#ig-interstitial .ig-step:last-child { border-bottom: none; }
#ig-interstitial .ig-step-icon {
    width: 40px; height: 40px; border-radius: 11px; background: #eeebe5;
    display: -webkit-flex; display: flex;
    -webkit-align-items: center; align-items: center;
    -webkit-justify-content: center; justify-content: center;
    -webkit-flex-shrink: 0; flex-shrink: 0;
}
#ig-interstitial .ig-dots-h {
    display: -webkit-flex; display: flex;
    -webkit-flex-direction: row; flex-direction: row;
    gap: 3px; align-items: center;
}
#ig-interstitial .ig-dots-v {
    display: -webkit-flex; display: flex;
    -webkit-flex-direction: column; flex-direction: column;
    gap: 3px; align-items: center;
}
#ig-interstitial .ig-dot {
    width: 3px; height: 3px; border-radius: 50%;
    background: #0d0d0d; display: block;
}
#ig-interstitial .ig-step-text { -webkit-flex: 1; flex: 1; }
#ig-interstitial .ig-step-label {
    font-size: 13px; font-weight: 500; color: #0d0d0d;
    margin-bottom: 3px; line-height: 1.35;
}
#ig-interstitial .ig-step-sub { font-size: 12px; color: #909090; line-height: 1.45; }
#ig-interstitial .ig-copy-btn {
    width: 100%; background: #0d0d0d; color: #faf9f7; border: none;
    border-radius: 13px; padding: 15px 24px;
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px; font-weight: 500; cursor: pointer;
    display: -webkit-flex; display: flex;
    -webkit-align-items: center; align-items: center;
    -webkit-justify-content: center; justify-content: center;
    gap: 8px; margin-bottom: 10px;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none; appearance: none;
}
#ig-interstitial .ig-copied-msg {
    display: none; font-size: 13px; color: #2d7a50;
    font-weight: 500; margin-bottom: 10px; padding: 12px 0;
}
#ig-interstitial .ig-url-fallback {
    display: none; font-size: 11px; color: #0d0d0d;
    word-break: break-all; -webkit-user-select: all; user-select: all;
    margin-bottom: 10px; padding: 10px; background: #eeebe5; border-radius: 8px;
}
#ig-interstitial .ig-hint { font-size: 11px; color: #909090; letter-spacing: 0.01em; }