@font-face {
    font-family: 'Cabal';
    src: url('/fonts/Cabal-w5j3.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: 'Cabal', sans-serif;
}

body {
    display: block !important;
    justify-content: unset !important;
    align-items: unset !important;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Cabal', sans-serif;
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 24px;
    background: rgba(34, 34, 34, 0.7);
    padding: 12px 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    font-family: 'Cabal', sans-serif;
    box-sizing: border-box;
}

.nav > .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    justify-self: center;
    grid-column: 2;
    min-width: 0;
}

.nav > .nav-home {
    grid-column: 3;
    justify-self: end;
    flex: 0 0 auto;
    margin-left: 0;
    margin-right: 0;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 16px;
    font-weight: bold;
    font-family: 'Cabal', sans-serif;
    letter-spacing: 1px;
    font-size: 1.1em;
    transition: color 0.2s;
}

.nav a:hover {
    text-decoration: underline;
    color: #00ffe7;
}

@media (max-width: 720px) {
    .nav {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "links home"
            "links home";
        row-gap: 10px;
    }

    .nav > .nav-links {
        grid-column: 1;
        justify-self: center;
    }

    .nav > .nav-home {
        grid-column: 2;
        justify-self: end;
        align-self: start;
    }
}

.page {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 16px 64px;
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 720px) minmax(0, 340px);
    justify-content: center;
    column-gap: 24px;
    row-gap: 24px;
    align-items: start;
}

.page.album-folded {
    grid-template-columns: 0px minmax(0, 720px) minmax(0, 340px);
}

.page.presave-folded {
    grid-template-columns: minmax(0, 340px) minmax(0, 720px) 0px;
}

.page.album-folded.presave-folded {
    grid-template-columns: 0px minmax(0, 820px) 0px;
    column-gap: 0px;
}

.panel {
    background: rgba(24, 26, 32, 0.85);
    border-radius: 18px;
    box-shadow: 0 2px 24px #0008;
    padding: 28px 24px;
    color: #fff;
    text-shadow: 0 2px 16px #000;
    font-family: 'Cabal', sans-serif;
    box-sizing: border-box;
}

.album-panel {
    position: sticky;
    top: 24px;
    text-align: center;
    grid-column: 1;
}

.album-panel[hidden] {
    display: none;
}

.presave-panel {
    position: sticky;
    top: 24px;
    text-align: center;
    grid-column: 3;
}

.presave-panel[hidden] {
    display: none;
}

.album-panel,
.presave-panel {
    overflow: hidden;
}

.promo-fold-btn {
    position: absolute;
    top: 10px;
    z-index: 3;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1.25em;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.35s cubic-bezier(0.22, 1.4, 0.36, 1),
        opacity 0.2s ease;
}

.album-panel .promo-fold-btn {
    right: 10px;
}

.presave-panel .promo-fold-btn {
    left: 10px;
}

.promo-fold-btn:hover {
    background: rgba(0, 255, 231, 0.16);
    border-color: rgba(0, 255, 231, 0.4);
    color: #00ffe7;
    transform: scale(1.08);
}

.promo-fold-btn:active {
    transform: scale(0.9);
}

.album-panel.is-folding .promo-fold-btn,
.presave-panel.is-folding .promo-fold-btn,
.album-panel.is-folded .promo-fold-btn,
.presave-panel.is-folded .promo-fold-btn {
    opacity: 0;
    pointer-events: none;
}

.promo-body {
    position: relative;
    z-index: 1;
    transition:
        opacity 0.35s ease,
        transform 0.55s cubic-bezier(0.22, 1.4, 0.36, 1);
}

.album-panel.is-folding .promo-body,
.presave-panel.is-folding .promo-body,
.album-panel.is-folded .promo-body,
.presave-panel.is-folded .promo-body {
    opacity: 0;
    pointer-events: none;
}

.album-panel.is-folding .promo-body {
    transform: translateX(-18%);
}

.presave-panel.is-folding .promo-body {
    transform: translateX(18%);
}

.promo-peek {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 44px;
    margin: 0;
    padding: 16px 6px;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: 'Cabal', sans-serif;
    font-size: 0.78em;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        color 0.2s ease;
}

.album-panel .promo-peek {
    left: 0;
    transform: rotate(180deg);
}

.presave-panel .promo-peek {
    right: 0;
}

.album-panel.is-folding .promo-peek,
.presave-panel.is-folding .promo-peek,
.album-panel.is-folded .promo-peek,
.presave-panel.is-folded .promo-peek {
    opacity: 1;
    pointer-events: auto;
}

.album-panel.is-folded:hover .promo-peek,
.presave-panel.is-folded:hover .promo-peek,
.album-panel.is-folding:hover .promo-peek,
.presave-panel.is-folding:hover .promo-peek {
    color: #00ffe7;
}

.album-panel.is-sliding,
.presave-panel.is-sliding,
.album-panel.is-folded,
.presave-panel.is-folded {
    position: fixed !important;
    z-index: 50;
    margin: 0;
    box-sizing: border-box;
}

.album-panel.is-folded,
.presave-panel.is-folded {
    padding: 0;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.album-panel.is-folded {
    border-radius: 0 14px 14px 0;
    border-left: 0;
}

.presave-panel.is-folded {
    border-radius: 14px 0 0 14px;
    border-right: 0;
}

@media (prefers-reduced-motion: reduce) {
    .promo-body,
    .promo-peek,
    .promo-fold-btn {
        transition: none !important;
    }
}

.album-kicker,
.presave-kicker {
    margin: 0 0 8px;
    font-size: 0.78em;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.album-panel h2,
.presave-panel h2 {
    margin: 0 0 10px;
    font-size: 1.7em;
    letter-spacing: 2px;
}

.album-panel p,
.presave-panel p {
    margin: 0 0 18px;
    font-size: 1.05em;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.presave-panel .presave-date {
    margin: -8px 0 16px;
    font-size: 0.82em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 255, 231, 0.85);
}

.presave-cover {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 0 18px;
    background: rgba(255, 255, 255, 0.06);
}

.presave-cta {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(0, 255, 231, 0.14);
    border: 1px solid rgba(0, 255, 231, 0.35);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.presave-cta:hover {
    background: rgba(0, 255, 231, 0.24);
    border-color: rgba(0, 255, 231, 0.55);
    transform: translateY(-1px);
}

.album-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.album-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.main-column {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    min-width: 0;
    will-change: transform;
}

.content-panel {
    text-align: left;
    width: 100%;
}

.content-panel h1 {
    margin: 0 0 6px;
    font-size: 2.6em;
    letter-spacing: 2px;
    text-align: center;
}

.content-panel h2 {
    margin: 1.2em 0 0.6em;
    font-size: 1.25em;
    letter-spacing: 0.08em;
    text-align: center;
    color: rgba(0, 255, 231, 0.9);
}

.content-panel h2:first-of-type {
    margin-top: 0.4em;
}

.content-panel .content-label {
    margin: 0 0 22px;
    font-size: 0.82em;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 255, 231, 0.85);
    text-align: center;
}

.content-panel p {
    margin: 0 0 1.15em;
    font-size: 1.15em;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.content-panel p:last-child {
    margin-bottom: 0;
}

.content-panel a {
    color: #00ffe7;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid #00ffe7;
    transition: color 0.2s, border 0.2s;
}

.content-panel a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.yt-featured {
    margin: 0 0 22px;
}

.yt-featured[hidden] {
    display: none;
}

.yt-featured-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
}

.yt-featured-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.yt-featured-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 14px 16px 16px;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0 0 12px 12px;
}

.content-panel .yt-featured-title,
.yt-featured-title {
    margin: 0;
    font-size: 1.15em;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #fff;
}

.content-panel .yt-featured-published,
.yt-featured-published {
    margin: 0;
    font-size: 0.75em;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 255, 231, 0.75);
}

.yt-videos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 0 22px;
}

.yt-status {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.yt-card {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border-bottom: none;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.yt-card:hover {
    transform: translateY(-2px);
    color: inherit;
    border-bottom: none;
    border-color: rgba(0, 255, 231, 0.28);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.yt-thumb-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.06);
}

.yt-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-duration {
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    font-size: 0.72em;
    letter-spacing: 0.04em;
}

.yt-meta {
    min-width: 0;
    text-align: left;
}

.yt-title {
    margin: 0 0 8px;
    font-size: 1.05em;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #fff;
}

.content-panel .yt-title {
    margin: 0 0 8px;
    font-size: 1.05em;
}

.yt-published {
    margin: 0;
    font-size: 0.78em;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.content-panel .yt-published {
    margin: 0;
    font-size: 0.78em;
}

.content-panel .yt-status {
    margin: 0;
    font-size: 1em;
}

.yt-channel-wrap {
    margin: 0;
    text-align: center;
}

.yt-channel-link {
    display: inline-block;
    margin-top: 4px;
}

.recent-panel {
    text-align: center;
    width: 100%;
}

.recent-panel[hidden] {
    display: none;
}

.recent-panel h2 {
    margin: 0 0 18px;
    font-size: 0.82em;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.recent-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: rgba(0, 255, 231, 0.35) transparent;
}

.recent-grid::-webkit-scrollbar {
    height: 6px;
}

.recent-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 231, 0.35);
    border-radius: 999px;
}

.recent-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 0 0 148px;
    width: 148px;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    scroll-snap-align: start;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.recent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    border-color: rgba(0, 255, 231, 0.28);
}

.recent-cover {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
}

.recent-meta {
    padding: 12px 10px 14px;
    text-align: center;
}

.recent-title {
    margin: 0 0 4px;
    font-size: 0.95em;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.25;
}

.recent-artist {
    margin: 0 0 6px;
    font-size: 0.78em;
    color: #00ffe7;
    line-height: 1.3;
}

.recent-date {
    margin: 0;
    font-size: 0.68em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.bot-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    text-align: left;
}

.feature-card h3 {
    margin: 0 0 8px;
    color: #00ffe7;
    font-size: 1em;
    letter-spacing: 0.04em;
}

.feature-card p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.contact-intro {
    margin: 0 0 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
}

.contact-shell {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.contact-disclaimer {
    margin: 0 0 24px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    text-align: left;
    font-size: 0.92em;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    box-sizing: border-box;
}

.contact-disclaimer strong {
    color: rgba(0, 255, 231, 0.85);
    font-weight: bold;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin: 0;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.contact-field label {
    font-size: 0.82em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 255, 231, 0.85);
}

.contact-field label span {
    color: rgba(255, 120, 120, 0.95);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Cabal', sans-serif;
    font-size: 1em;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    color-scheme: dark;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 231, 0.45);
    box-shadow: 0 0 0 2px rgba(0, 255, 231, 0.12);
}

.contact-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.contact-field select option {
    background-color: #181a20;
    color: #fff;
}

@media (prefers-color-scheme: light) {
    .contact-field input,
    .contact-field select,
    .contact-field textarea {
        color-scheme: light;
    }

    .contact-field select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23181820' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    }

    .contact-field select option {
        background-color: #fff;
        color: #181a20;
    }
}

.contact-field textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.55;
}

.contact-field-hint {
    margin: 0;
    font-size: 0.78em;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
}

.contact-word-count {
    margin: 0;
    font-size: 0.78em;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.contact-word-count.is-over {
    color: rgba(255, 120, 120, 0.95);
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-status {
    margin: 0;
    min-height: 1.4em;
    text-align: center;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.72);
}

.contact-status--success {
    color: rgba(0, 255, 231, 0.95);
}

.contact-status--error {
    color: rgba(255, 120, 120, 0.95);
}

.contact-status--pending {
    color: rgba(255, 255, 255, 0.72);
}

.contact-submit {
    align-self: center;
    margin-top: 4px;
    padding: 12px 22px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 231, 0.35);
    background: rgba(0, 255, 231, 0.14);
    color: #fff;
    font-family: 'Cabal', sans-serif;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.contact-submit:hover:not(:disabled) {
    background: rgba(0, 255, 231, 0.24);
    border-color: rgba(0, 255, 231, 0.55);
    transform: translateY(-1px);
}

.contact-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.mailing-panel {
    text-align: center;
}

.js-links-row {
    margin: 2px 0 8px;
}

.content-panel .socials-page-wrap {
    margin: 0 0 20px;
    text-align: center;
    font-size: 0.9em;
}

.content-panel .socials-page-link {
    display: inline-block;
    padding: 7px 12px;
    border: 1px solid rgba(0, 255, 231, 0.28);
    border-radius: 999px;
    background: rgba(0, 255, 231, 0.07);
    letter-spacing: 0.05em;
}

.content-panel .socials-page-link:hover {
    border-color: rgba(0, 255, 231, 0.58);
    background: rgba(0, 255, 231, 0.14);
}

.js-links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.js-links-list li {
    margin: 0;
}

.content-panel .js-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.content-panel .js-link-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-bottom: none;
    transform: translateY(-1px);
}

.js-link-btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.js-link-btn--spotify:hover {
    color: #1ed760;
}

.js-link-btn--instagram:hover {
    color: #f77737;
}

.js-link-btn--x:hover {
    color: #fff;
}

.js-link-btn--tiktok:hover {
    color: #25f4ee;
}

.js-link-btn--twitch:hover {
    color: #bf94ff;
}

.js-link-btn--youtube:hover {
    color: #ff4444;
}

.mailing-copy {
    margin: 0 0 20px;
    font-size: 1.05em;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.mailing-form {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}

.mailing-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.82em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 255, 231, 0.85);
}

.mailing-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.mailing-input {
    flex: 1 1 auto;
    min-width: 0;
    box-sizing: border-box;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Cabal', sans-serif;
    font-size: 1em;
}

.mailing-input:focus {
    outline: none;
    border-color: rgba(0, 255, 231, 0.45);
    box-shadow: 0 0 0 2px rgba(0, 255, 231, 0.12);
}

.mailing-submit {
    flex: 0 0 auto;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 231, 0.35);
    background: rgba(0, 255, 231, 0.14);
    color: #fff;
    font-family: 'Cabal', sans-serif;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.mailing-submit:hover:not(:disabled) {
    background: rgba(0, 255, 231, 0.24);
    border-color: rgba(0, 255, 231, 0.55);
    transform: translateY(-1px);
}

.mailing-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.mailing-status {
    margin: 14px 0 0;
    min-height: 1.4em;
    font-size: 0.92em;
    color: rgba(255, 255, 255, 0.72);
}

.mailing-status--success {
    color: rgba(0, 255, 231, 0.95);
}

.mailing-status--error {
    color: rgba(255, 120, 120, 0.95);
}

.mailing-status--pending {
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
    .page,
    .page.album-folded,
    .page.presave-folded,
    .page.album-folded.presave-folded {
        grid-template-columns: minmax(0, 720px);
        column-gap: 0;
    }

    .main-column {
        grid-column: 1;
        gap: 20px;
    }

    .main-column > .album-panel,
    .main-column > .presave-panel {
        position: static;
        top: auto;
        width: 100%;
        grid-column: auto;
    }

    .main-column .promo-fold-btn,
    .main-column .promo-peek {
        display: none !important;
    }

    .content-panel h1 {
        font-size: 2.2em;
    }

    .recent-card {
        flex-basis: 136px;
        width: 136px;
    }

    .yt-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mailing-row {
        flex-direction: column;
    }

    .mailing-submit {
        width: 100%;
    }
}
