/* =========================================================
   GLOBAL
========================================================= */

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

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

* {
    box-sizing: border-box;
    -webkit-touch-callout: none;
}

html, body {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    touch-action: auto;
    overscroll-behavior-y: auto;
    overscroll-behavior-x: none;
    cursor: default;
    
    /* Safe area for notches */
    padding-top: max(0px, env(safe-area-inset-top));
    padding-bottom: max(0px, env(safe-area-inset-bottom));

    /* leichtes RK Feeling */
    background: linear-gradient(
        to bottom,
        #f3f9fd 0%,
        #e1f0f7 100%
    );
}


/* =========================================================
   LAYOUT
========================================================= */

.wrap {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
}


/* =========================================================
   PANEL
========================================================= */

.panel {
    width: 100%;
    max-width: 100%;
    background: #f8fcff;
    padding: 15px;
    border-radius: 5px;

    /* leichter RK Rahmen */
    border: 1px solid rgba(84, 140, 168, 0.12);

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* =========================================================
   PREVIEW (OBEN STICKY)
========================================================= */

.preview-panel {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: 0;
    background: #d9edf8;
    display: flex;
    justify-content: center;
}


/* =========================================================
   CANVAS
========================================================= */

canvas {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    touch-action: none;
}

/* STORY (hoch) */
canvas.portrait {
    width: auto;
    height: 45vh;
    max-height: 45vh;
    max-width: 90vw;
}

/* POST (quadrat) */
canvas.square {
    width: auto;
    height: 35vh;
    max-height: 35vh;
    max-width: 90vw;
}

/* QUERFORMAT */
canvas.landscape {
    max-height: 50vh;
}

/* =========================================================
   SETTINGS
========================================================= */

.settings-panel {
    padding: 8px 10px 24px;
    overflow-x: hidden;
}


/* =========================================================
   INPUTS
========================================================= */

textarea,
input,
select {
    width: 100%;
    margin-bottom: 14px;
    padding: 10px;

    border-radius: 10px;
    border: 1px solid #cfe0ea;

    font-size: 14px;
    user-select: text;
    -webkit-user-select: text;
    cursor: auto;

    transition: 0.2s;
}

textarea {
    min-height: 80px;
    max-height: 140px;
    resize: vertical;
}

input[type="file"],
input[type="checkbox"],
input[type="radio"],
select,
button {
    cursor: pointer;
}

input[type="file"] {
    display: none;
}


/* =========================================================
   LABELS
========================================================= */

label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
    color: #4d6b7c;
}


/* =========================================================
   BUTTONS (CI angepasst)
========================================================= */

button {
    width: 100%;
    padding: 12px;
    margin-top: 6px;

    border-radius: 12px;
    border: none;

    background: #f59e0b;   /* RK Orange */
    color: #fff;

    font-weight: 600;
    cursor: pointer;

    transition: 0.2s;
}

button:hover {
    background: #d97706;
}


/* =========================================================
   ALIGN BUTTONS
========================================================= */

.align-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.align-group input {
    display: none;
}

.align-group span {
    display: block;
    background: #e6f1f7;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.align-group input:checked + span {
    background: #f59e0b;
    color: #fff;
}


/* =========================================================
   SLIDER
========================================================= */

input[type="range"] {
    -webkit-appearance: none;
    height: 6px;
    background: #d7e9f3;
    border-radius: 10px;
    margin-bottom: 18px;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;

    background: #f59e0b;

    border-radius: 50%;
    cursor: pointer;
}


/* =========================================================
   HOVER / FOCUS
========================================================= */

input:hover,
select:hover,
textarea:hover {
    border-color: #b7d0de;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #f59e0b;
}


/* =========================================================
   COLOR PALETTE
========================================================= */

.color-palette {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.color {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.color:hover {
    border: 2px solid #333;
}


/* =========================================================
   BUTTON ROW (PNG / JPG nebeneinander)
========================================================= */

.button-row {
    display: flex;
    gap: 10px;
}

.button-row button {
    flex: 1;
}


/* =========================================================
   LINK ROW
========================================================= */

.link-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.link-row button {
    flex: 1;
}

.link-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
}
.link-toggle input {
    transform: scale(1.2);
}

/* =========================================================
   LINK INPUT ROW
========================================================= */

.link-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.link-input-row input {
    flex: 1;
    margin-bottom: 0;
}

.link-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}


/* =========================================================
   BUTTON ROWS
========================================================= */

.button-row-2 {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.button-row-2 button {
    flex: 1;
}

.button-row-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(72px, 0.7fr);
    gap: 10px;
    margin-top: 10px;
}

.button-row-3 button {
    min-width: 0;
    font-size: 14px;
}

.export-row button {
    white-space: nowrap;
}

.share-export-btn {
    background: #1e6f7a;
}

.share-export-btn:hover {
    background: #2d8792;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 900px) {

    .wrap {
    width: 100%;
    max-width: 100%;
}

    canvas {
        max-width: 420px;
        max-height: 50vh;
    }
}

/* =========================================================
   COLOR ROW (clean + full grid)
========================================================= */

.color-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;

    overflow-x: auto;
    padding-bottom: 4px;
}

.color-row + label {
    display: none;
}

.bg-color-row + label {
    display: block;
}

/* verhindert Schrumpfen */
.color,
.color-add {
    flex: 0 0 32px;
    height: 32px;
}

/* =========================================================
   COLOR ITEMS
========================================================= */

.color,
.color-add {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    cursor: pointer;

    border: 2px solid transparent;
    transition: all 0.2s ease;
}

/* Farben (Preset) */
.color[data-color="#000000"] { background: #000000; }
.color[data-color="#ffffff"] { background: #ffffff; border: 1px solid #ddd; }
.color[data-color="#ea5e20"] { background: #ea5e20; }
.color[data-color="#1e6f7a"] { background: #1e6f7a; }
.color[data-color="#4caf50"] { background: #4caf50; }
.color[data-color="#f5c518"] { background: #f5c518; }
.color[data-color="#e91e63"] { background: #e91e63; }
.color[data-color="#9c27b0"] { background: #9c27b0; }
.color[data-color="#2196f3"] { background: #2196f3; }
.color[data-color="#00bcd4"] { background: #00bcd4; }
.color[data-color="#8bc34a"] { background: #8bc34a; }
.color[data-color="#ff9800"] { background: #ff9800; }

.bg-color[data-color="#000000"] { background: #000000; }
.bg-color[data-color="#ffffff"] { background: #ffffff; border: 1px solid #ddd; }
.bg-color[data-color="#1e6f7a"] { background: #1e6f7a; }
.bg-color[data-color="#ea5e20"] { background: #ea5e20; }
.bg-color[data-color="#4caf50"] { background: #4caf50; }
.bg-color[data-color="#f5c518"] { background: #f5c518; }
.bg-color[data-color="#e91e63"] { background: #e91e63; }
.bg-color[data-color="#9c27b0"] { background: #9c27b0; }
.bg-color[data-color="#2196f3"] { background: #2196f3; }
.bg-color[data-color="#00bcd4"] { background: #00bcd4; }
.bg-color[data-color="#8bc34a"] { background: #8bc34a; }
.bg-color[data-color="#ff9800"] { background: #ff9800; }

/* Hover Effekt */
.color:hover {
    transform: scale(1.08);
    border: 2px solid #ea5e20;
}

.bg-color {
    flex: 0 0 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.bg-color:hover {
    transform: scale(1.08);
    border: 2px solid #1e6f7a;
}

.color.selected,
.bg-color.selected {
    transform: scale(1.08);
    border-color: #2d4b5f;
    box-shadow: 0 0 0 2px rgba(45, 75, 95, 0.18);
}

/* =========================================================
   ADD BUTTON (+)
========================================================= */

.color-add {
    background: #1e6f7a;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: bold;
}

.color-add:hover {
    background: #ea5e20;
}


/* =========================================================
   INLINE COLOR PICKER
========================================================= */

.color-picker-box {
    margin-top: 8px;
    padding: 10px;
    border-radius: 12px;

    background: #eaf4fa;
}

.file-input-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 14px;
    border: 1px solid #cfe0ea;
    border-radius: 12px;
    background: #fafdff;
}

.file-trigger-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.media-row {
    grid-template-columns: minmax(0, 1fr);
}

.media-row .file-trigger-group {
    width: 100%;
}

.media-row .file-trigger {
    flex: 1 1 0;
}

.video-record-trigger {
    border: none;
    margin-top: 0;
    background: #1e6f7a;
    color: #ffffff;
}

.video-record-trigger:hover {
    background: #2d8792;
}

.feature-toggle-row {
    margin-bottom: 10px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkbox-label span {
    color: #2d4b5f;
    font-size: 13px;
    font-weight: 700;
}

.text-background-controls {
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 12px;
    background: #eef7fb;
}

.template-section {
    margin-bottom: 14px;
    padding: 14px;
    border: 1px solid rgba(11, 124, 130, 0.18);
    border-radius: 16px;
    background: linear-gradient(180deg, #f3fbfb 0%, #e4f4f4 100%);
    box-shadow: 0 8px 24px rgba(11, 124, 130, 0.08);
}

.template-toggle-row {
    margin-bottom: 10px;
}

.template-section-title {
    margin-bottom: 4px;
    color: #0b7c82;
    font-size: 14px;
    font-weight: 800;
}

.template-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.template-section-copy {
    min-width: 0;
}

.template-section-subtitle {
    color: #4f7476;
    font-size: 12px;
    line-height: 1.4;
}

.template-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(11, 124, 130, 0.14);
    color: #0b7c82;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.template-access-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.template-code-input {
    margin-bottom: 0;
    background: #fffdf7;
}

.template-unlock-btn {
    width: auto;
    min-width: 110px;
    min-height: 42px;
    margin-top: 0;
    padding: 0 14px;
    background: #0b7c82;
    color: #ffffff;
}

.template-unlock-btn:hover {
    background: #0f8f96;
}

.template-status {
    margin-bottom: 10px;
    color: #4f7476;
    font-size: 12px;
    line-height: 1.4;
}

.template-status.hidden {
    display: none;
}

.template-list {
    display: grid;
    gap: 8px;
}

.template-btn {
    min-height: 44px;
    margin-top: 0;
    padding: 10px 12px;
    background: #eef8f8;
    color: #25585b;
    font-size: 13px;
    font-weight: 700;
    border-radius: 14px;
    border: 1px solid rgba(11, 124, 130, 0.18);
}

.template-btn:hover {
    background: #dceff0;
}

.template-btn.active {
    background: #0b7c82;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(11, 124, 130, 0.18);
    border-color: transparent;
}

.template-clear-btn {
    background: #f3fbfb;
    color: #4f7476;
}

.template-clear-btn:hover {
    background: #e3f2f3;
}

.compact-align-group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 12px;
}

.compact-align-group span {
    font-size: 12px;
    padding: 9px 8px;
    white-space: nowrap;
}

.file-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-bottom: 0;
    padding: 0 18px;
    border-radius: 12px;
    background: #d7e9f3;
    color: #2d4b5f;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.2s;
}

.file-trigger:hover {
    background: #c5dce8;
}

.file-trigger-camera {
    background: #1e6f7a;
    color: #ffffff;
    width: 56px;
    min-width: 56px;
    min-height: 44px;
    padding: 0;
    position: relative;
}

.file-trigger-camera:hover {
    background: #2d8792;
}

.file-trigger-video-camera {
    background: #f59e0b;
}

.file-trigger-video-camera:hover {
    background: #d97706;
}

.file-trigger-video-camera::before {
    content: "";
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='10' y='18' width='30' height='28' rx='7' fill='%23ffffff'/%3E%3Cpath d='M40 27l14-8v26L40 37V27z' fill='%23ffffff'/%3E%3Ccircle cx='24' cy='32' r='6' fill='%23f59e0b'/%3E%3C/svg%3E\");
}

.file-trigger-camera svg {
    width: 30px;
    height: 30px;
    display: block;
}

.file-trigger-camera::before {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: calc(50% - 3px);
    left: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23ffffff' d='M22 14h20l4 6h6c5.523 0 10 4.477 10 10v20c0 5.523-4.477 10-10 10H12C6.477 60 2 55.523 2 50V30c0-5.523 4.477-10 10-10h6l4-6Zm10 14c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16Zm0 8c4.418 0 8 3.582 8 8s-3.582 8-8 8-8-3.582-8-8 3.582-8 8-8Zm16-10a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z'/%3E%3C/svg%3E");
}

.file-name {
    min-width: 0;
    color: #4d6b7c;
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-color-picker {
    display: grid;
    gap: 10px;
}

.picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #2d4b5f;
    font-size: 12px;
    font-weight: 700;
}

.color-preview {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    border: 2px solid rgba(84, 140, 168, 0.18);
    background: #000000;
    flex: 0 0 auto;
}

.color-pad {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(84, 140, 168, 0.2);
    cursor: crosshair;
    touch-action: none;
}

.color-pad-thumb {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.color-slider-wrap {
    padding: 0;
}

.hue-slider {
    background: linear-gradient(
        to right,
        #ff0000 0%,
        #ffff00 17%,
        #00ff00 33%,
        #00ffff 50%,
        #0000ff 67%,
        #ff00ff 83%,
        #ff0000 100%
    );
}

.hue-slider::-webkit-slider-thumb {
    background: #ffffff;
    border: 2px solid #2d4b5f;
}

.hue-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #2d4b5f;
    background: #ffffff;
    cursor: pointer;
}

.hue-slider::-moz-range-track {
    height: 6px;
    border-radius: 10px;
}


/* =========================================================
   UTIL
========================================================= */

.hidden {
    display: none;
}


/* =========================================================
   ADD BUTTON (+)
========================================================= */

.color-add {
    width: 32px;
    height: 32px;

    border-radius: 8px;

    background: #1e6f7a;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;
    transition: 0.2s;
}

.color-add:hover {
    background: #ea5e20;
}


/* =========================================================
   FORMAT UMSCHALTER
========================================================= */

.format-switch {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.format-switch-settings {
    margin-top: 2px;
}

.format-switch button {
    flex: 1 1 33.333%;
    width: 33.333%;
    min-height: 36px;
    background: #1e6f7a;
    color: #fff;
    border-radius: 12px;
    padding: 8px 10px;
    font-weight: 600;
    margin-top: 0;
}

.format-switch button.active {
    background: #2d8792;
    color: #fff;
}

.sticky-panel {
    position: -webkit-sticky;
    position: sticky;
    top: max(0px, env(safe-area-inset-top));
    z-index: 20;
    background: #f8fcff;
    overflow: visible;
}

.sticky-panel.preview-docked {
    position: fixed;
    left: 0;
    right: 0;
    top: max(0px, env(safe-area-inset-top));
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    z-index: 50;
}

.preview-sticky-spacer {
    width: 100%;
    height: 0;
}

/* =========================================================
   SAVE BAR
========================================================= */

.save-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 100000;
}

.save-bar-card {
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 16px;
    border-radius: 16px;
    background: #f8fcff;
    border: 1px solid rgba(84, 140, 168, 0.18);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.save-bar-title {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #2d4b5f;
}

.save-bar input {
    margin-bottom: 0;
    user-select: text;
    -webkit-user-select: text;
}

.save-bar-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.save-bar-actions button {
    flex: 1;
    margin-top: 0;
}

.save-dialog-secondary {
    background: #d7e9f3;
    color: #2d4b5f;
}

.save-dialog-secondary:hover {
    background: #c5dce8;
}

/* =========================================================
   IOS INSTALL HINT
========================================================= */

.ios-install-hint {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(max(12px, env(safe-area-inset-top)) + 64px);
    z-index: 99998;
}

.ios-install-hint-card {
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 14px;
    border-radius: 16px;
    background: rgba(248, 252, 255, 0.98);
    border: 1px solid rgba(84, 140, 168, 0.18);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
    color: #2d4b5f;
}

.ios-install-hint-title {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
}

.ios-install-hint-steps {
    display: grid;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.ios-install-hint-card button {
    margin-top: 0;
}

/* =========================================================
   VIDEO RECORDER
========================================================= */

.video-recorder-modal {
    position: fixed;
    inset: 0;
    z-index: 100002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(18, 34, 44, 0.72);
}

.video-recorder-card {
    width: min(100%, 520px);
    padding: 16px;
    border-radius: 18px;
    background: #f8fcff;
    border: 1px solid rgba(84, 140, 168, 0.18);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.video-recorder-title {
    margin-bottom: 6px;
    color: #2d4b5f;
    font-size: 18px;
    font-weight: 800;
}

.video-recorder-copy {
    margin-bottom: 12px;
    color: #4d6b7c;
    font-size: 13px;
    line-height: 1.45;
}

.video-recorder-preview {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    background: #c6dce8;
    object-fit: cover;
}

.video-recorder-status {
    margin-top: 10px;
    color: #1e6f7a;
    font-size: 13px;
    font-weight: 700;
}

.video-recorder-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.video-recorder-actions button {
    flex: 1;
    margin-top: 0;
}

.unified-media-row {
    grid-template-columns: minmax(0, 1fr);
}

.unified-media-row .file-trigger-group {
    width: 100%;
    flex-wrap: nowrap;
}

.media-picker-trigger {
    flex: 1 1 auto;
}

.unified-media-row .file-name {
    white-space: nowrap;
}

.file-trigger-camera.file-trigger-video-camera::before {
    content: "";
    width: 34px;
    height: 34px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='10' y='18' width='30' height='28' rx='7' fill='%23ffffff'/%3E%3Cpath d='M40 27l14-8v26L40 37V27z' fill='%23ffffff'/%3E%3Ccircle cx='24' cy='32' r='6' fill='%23f59e0b'/%3E%3C/svg%3E");
}
