:root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #1f2933;
    background-color: #f5f7fa;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.top-bar {
    background: #ffffff;
    border-bottom: 1px solid #e4e7eb;
    padding: 0.75rem 0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.top-bar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar__brand {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar__brand > a:first-child {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.top-bar__brand > a:first-child:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.top-bar__pricing-link {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.top-bar__pricing-link:hover {
    color: #ea580c;
    text-decoration: none;
}

.top-bar__logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.top-bar__nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-bar__nav-link {
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.top-bar__nav-link:hover {
    color: #1d4ed8;
    text-decoration: none;
}

.top-bar__nav-link--active {
    color: #1d4ed8;
}

.top-bar__user-menu {
    position: relative;
}

.top-bar__user-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid #e4e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.top-bar__user-toggle:hover {
    background: #f8fafc;
    border-color: #cbd2d9;
}

.top-bar__user-icon {
    color: #64748b;
    flex-shrink: 0;
}

.top-bar__user-name {
    font-weight: 500;
    color: #1f2933;
}

.top-bar__user-arrow {
    color: #94a3b8;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.top-bar__user-dropdown--open .top-bar__user-arrow {
    transform: rotate(180deg);
}

.top-bar__user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #ffffff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.top-bar__user-dropdown--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-bar__dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.top-bar__dropdown-item:last-child {
    border-bottom: none;
}

.top-bar__dropdown-item:hover {
    background: #f8fafc;
    color: #1f2933;
}

.top-bar__dropdown-item svg {
    color: #64748b;
    flex-shrink: 0;
}

.top-bar__dropdown-item--logout {
    color: #ef4444;
}

.top-bar__dropdown-item--logout:hover {
    background: #fef2f2;
    color: #dc2626;
}

.top-bar__dropdown-item--logout svg {
    color: #ef4444;
}

.top-bar__dropdown-item--active {
    background: #eff6ff;
    color: #1d4ed8;
}

.top-bar__dropdown-item--active svg {
    color: #2563eb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 3rem 2rem;
}

.list-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1.5rem;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.table-card {
    overflow: visible;
}

.card h2 {
    margin-top: 0;
}

.card label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card input,
.card select {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid #cbd2d9;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* Fix: Make radio and checkbox inputs left-aligned rather than stretched full width */
.card input[type="radio"],
.card input[type="checkbox"] {
    width: auto;
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
    /* Remove background, just inherit default */
}

.card button {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    cursor: pointer;
}

.checkbox-inline input {
    width: auto;
    margin: 0;
}

.checkbox-inline + button {
    margin-top: 0.5rem;
}

.alert {
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.alert.success {
    background: #e1f7e9;
    color: #136128;
    border: 1px solid #9cdcae;
}

.alert.error {
    background: #fde2e1;
    color: #b91c1c;
    border: 1px solid #f5b4b4;
}

.result img {
    width: 220px;
    height: 220px;
    border-radius: 12px;
    display: block;
    margin-top: 1rem;
    border: 1px solid #e4e7eb;
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.1);
}

.table-card table {
    width: 100%;
    border-collapse: collapse;
    overflow: visible;
}

.table-card th,
.table-card td {
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid #e4e7eb;
    text-align: left;
}

.table-card th {
    background: #f0f4f8;
    font-weight: 600;
    color: #334155;
}

.table-card tr:hover td {
    background: #f8fafc;
}

.table-card td {
    position: relative;
    overflow: visible;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.auth-card {
    max-width: 420px;
    margin: 4rem auto;
}

.auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.landing-hero {
    background: #fef3c7 url('../images/wantqr_bg_shapes.webp') no-repeat center center;
    background-size: cover;
    min-height: auto;
    width: 100%;
    padding: 3rem 0 3rem 0;
    position: relative;
}

.landing-hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.landing-hero__text {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.landing-hero__text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2933;
    text-align: left;
}

.landing-hero__text p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.landing-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.landing-hero__image img {
    max-width: 100%;
    max-height: 48vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.landing-hero__badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.12);
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.landing-hero__card .card {
    margin: 0;
}

.btn-primary,
.btn-secondary {
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.4);
}

.card .btn-primary,
.card button.btn-primary {
    background: linear-gradient(135deg, #f97316, #ea580c) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: inherit;
    font-family: inherit;
}

.card .btn-primary:hover,
.card button.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.4) !important;
}

.btn-info {
    background: #f5f5f4;
    color: #f97316;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-info:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
    text-decoration: none;
}

.btn-action {
    background: #f5f5f4;
    color: #16a34a;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25);
    text-decoration: none;
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.35);
    text-decoration: none;
}

.card .btn-danger,
.card button.btn-danger {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: inherit;
    font-family: inherit;
    border-radius: 8px;
}

.card .btn-danger:hover,
.card button.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.35) !important;
}

.card .btn-secondary,
.card button.btn-secondary {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: inherit;
    font-family: inherit;
}

.card .btn-secondary:hover,
.card button.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.4) !important;
}

.btn-secondary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    text-decoration: none;
}

.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.4);
    text-decoration: none;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #2563eb;
    font-weight: 600;
}

.section {
    background: #ffffff;
    padding: 4rem 0;
}

.features-section {
    background: #f8fafc;
    padding: 0rem 0 1rem 0;
}

.feature-card {
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.feature-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1f2933;
    font-size: 1.5rem;
}

.feature-card p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.landing-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.landing-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.landing-card h2 {
    margin-top: 0;
}

.landing-card ol {
    padding-left: 1.25rem;
    color: #475569;
    line-height: 1.6;
}

.landing-card p {
    color: #475569;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.feature-list li {
    margin-bottom: 0.85rem;
}

.landing-footer {
    background: #ffffff;
    padding: 4rem 0 0 0;
    border-top: 1px solid #e4e7eb;
    margin-top: 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e4e7eb;
    align-items: flex-start;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 160px;
    text-align: left;
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2933;
    margin: 0 0 1rem 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #f97316;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.footer-copyright {
    color: #94a3b8;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #64748b;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.table-responsive {
    width: 100%;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.table-responsive table {
    width: 100%;
    overflow: visible;
}

@media (max-width: 1024px) {
    .table-card td {
        word-break: break-word;
    }
}

@media (max-width: 768px) {
    .table-responsive {
        border-radius: 0;
    }

    .table-card table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
    }

    .table-card thead {
        display: none;
    }

    .table-card tbody,
    .table-card tr,
    .table-card td {
        display: block;
        width: 100%;
    }

    .table-card tr {
        border: 1px solid #e4e7eb;
        border-radius: 12px;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        background: #fff;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
        overflow: visible;
    }

    .table-card td {
        border-bottom: 1px solid #f1f5f9;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        overflow: visible;
    }

    .table-card td:last-child {
        border-bottom: none;
    }

    .table-card td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #64748b;
        min-width: 120px;
        flex-shrink: 0;
    }

    .table-card td > * {
        width: 100%;
    }

    .table-card td > .btn-secondary,
    .table-card td > .copy-btn {
        width: auto;
        align-self: flex-start;
    }

    .table-card td .short-link,
    .table-card td .url-link {
        word-break: break-word;
        overflow-wrap: anywhere;
    display: inline-block;
    max-width: 100%;
    }
}

/* URL Link Hover Preview */
.url-link {
    position: relative;
    cursor: pointer;
}

.url-link:hover {
    text-decoration: underline;
}

/* QR Code Color Cards */
.qr-color-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    justify-items: start;
    align-items: start;
}

.qr-color-card {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
}

.qr-module-card {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
    justify-self: start;
    align-self: start;
    width: 100%;
}

.qr-module-card-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.qr-module-card .qr-module-options,
.qr-module-card .qr-module-option {
    text-align: left;
}

.qr-color-card-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.qr-color-picker {
    width: 100%;
    height: 60px;
    border: 2px solid #e4e7eb;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.qr-rgb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.qr-rgb-label {
    font-size: 0.7rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.qr-rgb-input {
    width: 100%;
    padding: 0.35rem;
    border: 1px solid #cbd2d9;
    border-radius: 4px;
    font-size: 0.85rem;
}

.qr-color-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 6px;
}

.qr-color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #cbd2d9;
    display: block;
}

.qr-color-hex {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: monospace;
}

.qr-checkbox-label {
    display: block;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.qr-checkbox-label input {
    margin-right: 0.5rem;
}

.qr-checkbox-label span {
    font-size: 0.75rem;
    color: #475569;
}

.qr-module-options {
    padding: 0;
    margin: 0;
    text-align: left;
    display: block;
    width: 100%;
}

.qr-module-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    cursor: pointer;
    text-align: left;
    justify-content: flex-start;
    width: 100%;
}

.qr-module-option input[type="radio"],
.qr-module-option input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-left: 0;
    flex-shrink: 0;
    order: 1;
}

.qr-module-option span {
    font-size: 0.85rem;
    order: 2;
}

.url-preview {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #ffffff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    min-width: 280px;
    max-width: 400px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    white-space: normal;
}

.url-link:hover .url-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.url-preview::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #ffffff;
}

.url-preview__domain {
    font-weight: 600;
    color: #1f2933;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.url-preview__domain::before {
    content: '🌐';
    font-size: 1rem;
}

.url-preview__title {
    font-weight: 600;
    color: #2563eb;
    font-size: 0.95rem;
    margin: 0.5rem 0;
    line-height: 1.4;
    word-wrap: break-word;
}

.url-preview__url {
    color: #475569;
    font-size: 0.85rem;
    word-break: break-all;
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
}

.url-preview__arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.1));
}

/* QR Code Hover Preview */
.short-link {
    position: relative;
    cursor: pointer;
}

.qr-preview {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #ffffff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    white-space: normal;
}

.short-link:hover .qr-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.qr-preview img {
    width: 200px;
    height: 200px;
    display: block;
    border-radius: 8px;
}

.qr-preview__arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.1));
}

@media (max-width: 768px) {
    .top-bar__container {
        padding: 0 1.5rem;
        flex-wrap: wrap;
    }

    .top-bar__brand {
        flex: 1;
        min-width: 0;
    }

    .top-bar__pricing-link {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .top-bar__nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .top-bar__new-btn,
    .top-bar__signin-btn,
    .top-bar__register-btn {
        font-size: 0.85rem !important;
        padding: 0.4rem 0.75rem !important;
    }

    .top-bar__user-toggle {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.85rem !important;
    }

    .top-bar__user-name {
        display: none;
    }

    .top-bar__user-icon {
        width: 18px;
        height: 18px;
    }

    .container {
        padding: 2rem 1.5rem 4rem;
    }

    .landing-hero {
        min-height: auto;
        padding: 1.5rem 0;
    }

    .landing-hero__container {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }

    .landing-hero__text {
        text-align: center;
        padding: 0;
    }

    .landing-hero__text h1 {
        font-size: 2rem;
        text-align: center;
    }

    .landing-hero__text p {
        font-size: 1.1rem;
    }

    .landing-hero__actions {
        justify-content: center;
    }

    .landing-hero__image {
        padding: 2rem 2rem 2rem 2rem;
    }


    .url-preview {
        min-width: 240px;
        max-width: 90vw;
    }

    .qr-preview img {
        width: 150px;
        height: 150px;
    }
}

