/* ===== CONFESSIONS PAGE - MODERN REDESIGN ===== */

:root {
    --crush-primary: #ff6b9d;
    --crush-secondary: #c44569;
    --crush-accent: #ffa502;
    --crush-bg: #0f0f23;
    --crush-card-bg: #1a1a3e;
    --crush-border: #2a2a5e;
    --crush-text: #ffffff;
    --crush-text-secondary: #b0b0d0;
    --crush-success: #4ade80;
    --crush-danger: #ff4757;
}

/* ===== MAIN CONTAINER ===== */
.secret-crush-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: var(--crush-bg);
    min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.crush-hero-section {
    position: relative;
    padding: 60px 30px;
    overflow: hidden;
    border-bottom: 1px solid var(--crush-border);
}

.crush-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.crush-gradient-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.crush-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--crush-primary), var(--crush-secondary));
    top: -100px;
    right: -100px;
    animation: crushFloat 6s ease-in-out infinite;
}

.crush-blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--crush-accent), var(--crush-primary));
    bottom: -80px;
    left: -80px;
    animation: crushFloat 8s ease-in-out infinite reverse;
}

@keyframes crushFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.crush-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.crush-title-wrapper {
    flex: 1;
}

.crush-main-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, var(--crush-primary), var(--crush-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.crush-subtitle {
    font-size: 18px;
    color: var(--crush-text-secondary);
    margin: 0;
    max-width: 400px;
    line-height: 1.6;
}

.crush-btn-share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--crush-primary), var(--crush-secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    white-space: nowrap;
}

.crush-btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.crush-btn-share:active {
    transform: translateY(0);
}

.crush-btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* ===== CONTROLS SECTION ===== */
.crush-controls-section {
    padding: 30px;
    background: var(--crush-card-bg);
    border-bottom: 1px solid var(--crush-border);
}

/* Search Box */
.crush-search-wrapper {
    margin-bottom: 24px;
}

.crush-search-box {
    display: flex;
    align-items: center;
    background: var(--crush-bg);
    border: 1.5px solid var(--crush-border);
    border-radius: 50px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.crush-search-box:focus-within {
    border-color: var(--crush-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.crush-search-icon {
    width: 20px;
    height: 20px;
    color: var(--crush-text-secondary);
    margin-right: 12px;
    flex-shrink: 0;
}

.crush-search-input {
    flex: 1;
    background: none;
    border: none;
    color: var(--crush-text);
    font-size: 16px;
    outline: none;
}

.crush-search-input::placeholder {
    color: var(--crush-text-secondary);
}

/* Filter Tabs */
.crush-filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.crush-filter-tabs::-webkit-scrollbar {
    height: 4px;
}

.crush-filter-tabs::-webkit-scrollbar-track {
    background: transparent;
}

.crush-filter-tabs::-webkit-scrollbar-thumb {
    background: var(--crush-border);
    border-radius: 2px;
}

.crush-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--crush-bg);
    border: 1.5px solid var(--crush-border);
    border-radius: 30px;
    color: var(--crush-text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.crush-filter-btn:hover {
    border-color: var(--crush-primary);
    color: var(--crush-primary);
}

.crush-filter-btn.active {
    background: linear-gradient(135deg, var(--crush-primary), var(--crush-secondary));
    border-color: transparent;
    color: white;
}

.crush-filter-emoji {
    font-size: 16px;
}

.crush-filter-text {
    font-weight: 600;
}

/* Categories Filter */
.crush-categories-wrapper {
    display: flex;
    justify-content: flex-start;
}

.crush-categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    width: 100%;
}

.crush-categories-scroll::-webkit-scrollbar {
    height: 4px;
}

.crush-categories-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.crush-categories-scroll::-webkit-scrollbar-thumb {
    background: var(--crush-border);
    border-radius: 2px;
}

.crush-category-tag {
    padding: 8px 16px;
    background: var(--crush-bg);
    border: 1.5px solid var(--crush-border);
    border-radius: 25px;
    color: var(--crush-text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.crush-category-tag:hover {
    border-color: var(--crush-primary);
    color: var(--crush-primary);
}

.crush-category-tag.active {
    background: var(--crush-primary);
    border-color: var(--crush-primary);
    color: white;
}

/* ===== FEED CONTAINER ===== */
.crush-feed-container {
    padding: 40px 30px;
}

.secret-crush-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

/* ===== STORY CARD ===== */
.story-card {
    background: var(--crush-card-bg);
    border: 1px solid var(--crush-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--crush-primary), var(--crush-secondary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-card:hover {
    border-color: var(--crush-primary);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.15);
    transform: translateY(-4px);
}

.story-card:hover::before {
    opacity: 1;
}

/* Story Header */
.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.story-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.story-author {
    font-size: 13px;
    color: var(--crush-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 8px;
}

.story-date {
    font-size: 12px;
    color: var(--crush-text-secondary);
    font-weight: 500;
}

.story-category-tag {
    background: rgba(255, 107, 157, 0.15);
    color: var(--crush-primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.story-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-views {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--crush-text-secondary);
    font-weight: 500;
}

.story-delete-btn {
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    font-size: 16px;
    cursor: pointer;
    padding: 6px 10px;
    opacity: 0.9;
    transition: all 0.2s ease;
    color: var(--crush-danger);
    border-radius: 6px;
}

.story-delete-btn:hover {
    opacity: 1;
    background: rgba(255, 71, 87, 0.3);
    border-color: var(--crush-danger);
    transform: scale(1.1);
}

/* Story Content */
.story-content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--crush-text);
    word-wrap: break-word;
    white-space: pre-wrap;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Story Reactions */
.story-reactions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--crush-border);
}

.reaction-btn {
    flex: 1;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--crush-bg);
    border: 1px solid var(--crush-border);
    border-radius: 12px;
    color: var(--crush-text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reaction-btn:hover {
    border-color: currentColor;
    color: var(--crush-text);
}

.reaction-btn.active {
    background: var(--crush-primary);
    border-color: var(--crush-primary);
    color: white;
}

.reaction-btn.love { color: #ff6b9d; }
.reaction-btn.love.active { background: #ff6b9d; }

.reaction-btn.relate { color: #4ade80; }
.reaction-btn.relate.active { background: #4ade80; }

.reaction-btn.curious { color: #ffa502; }
.reaction-btn.curious.active { background: #ffa502; }

.reaction-count {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    min-width: 24px;
    text-align: center;
    display: inline-block;
}

.reaction-btn:not(.active) .reaction-count {
    color: currentColor;
    background: rgba(255, 255, 255, 0.1);
}

.story-view-btn {
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 69, 105, 0.1));
    border: 1px solid var(--crush-primary);
    border-radius: 12px;
    color: var(--crush-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.story-view-btn:hover {
    background: var(--crush-primary);
    color: white;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    color: var(--crush-text-secondary);
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 16px;
    display: block;
}

.empty-state p {
    font-size: 16px;
    margin: 0;
}

/* ===== LOAD MORE BUTTON ===== */
.crush-load-more-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 30px;
}

.crush-btn-load-more {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--crush-card-bg);
    border: 1.5px solid var(--crush-border);
    color: var(--crush-text);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crush-btn-load-more:hover {
    border-color: var(--crush-primary);
    color: var(--crush-primary);
}

.crush-btn-load-more svg {
    width: 18px;
    height: 18px;
}

/* ===== MODALS ===== */
.crush-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    animation: crushModalFadeIn 0.3s ease;
}

.crush-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes crushModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.crush-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.crush-modal-content {
    position: relative;
    background: var(--crush-card-bg);
    border: 1px solid var(--crush-border);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    animation: crushModalSlideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes crushModalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.crush-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--crush-text-secondary);
    cursor: pointer;
    padding: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crush-modal-close:hover {
    color: var(--crush-primary);
    transform: rotate(90deg);
}

.crush-modal-close svg {
    width: 24px;
    height: 24px;
}

.crush-modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.crush-modal-header h2 {
    font-size: 28px;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, var(--crush-primary), var(--crush-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crush-modal-header p {
    color: var(--crush-text-secondary);
    margin: 0;
    font-size: 14px;
}

/* Form Styles */
.crush-modal-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.crush-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crush-form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--crush-text);
}

.crush-optional {
    color: var(--crush-text-secondary);
    font-weight: 400;
    font-size: 12px;
}

.crush-form-select,
.crush-form-textarea {
    background: var(--crush-bg);
    border: 1.5px solid var(--crush-border);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--crush-text);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.crush-form-select:focus,
.crush-form-textarea:focus {
    outline: none;
    border-color: var(--crush-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.crush-form-select {
    cursor: pointer;
    padding: 12px 16px;
}

.crush-form-select option {
    background: var(--crush-bg);
    color: var(--crush-text);
}

.crush-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.crush-char-counter {
    font-size: 12px;
    color: var(--crush-text-secondary);
    text-align: right;
}

.crush-btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--crush-primary), var(--crush-secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    margin-top: 10px;
}

.crush-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.crush-btn-submit:active {
    transform: translateY(0);
}

.crush-btn-submit svg {
    width: 18px;
    height: 18px;
}

/* Publication Mode Options */
.crush-mode-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.crush-mode-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1.5px solid var(--crush-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(26, 26, 62, 0.5);
}

.crush-mode-option:hover {
    border-color: var(--crush-primary);
    background: rgba(255, 107, 157, 0.1);
}

.crush-mode-option input[type="radio"] {
    cursor: pointer;
    accent-color: var(--crush-primary);
}

.crush-mode-option input[type="radio"]:checked + .crush-mode-icon + .crush-mode-text {
    color: var(--crush-primary);
}

.crush-mode-option input[type="radio"]:checked {
    accent-color: var(--crush-primary);
}

.crush-mode-option:has(input[type="radio"]:checked) {
    border-color: var(--crush-primary);
    background: rgba(255, 107, 157, 0.15);
}

.crush-mode-icon {
    font-size: 24px;
    min-width: 24px;
}

.crush-mode-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--crush-text);
    transition: color 0.3s ease;
}

.crush-mode-text strong {
    font-size: 14px;
    font-weight: 600;
}

.crush-mode-text small {
    font-size: 12px;
    color: var(--crush-text-secondary);
}

.crush-form-input {
    background: var(--crush-bg);
    border: 1.5px solid var(--crush-border);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--crush-text);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.crush-form-input:focus {
    outline: none;
    border-color: var(--crush-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.crush-form-hint {
    font-size: 12px;
    color: var(--crush-text-secondary);
    margin-top: 4px;
}

/* Story Detail Modal */
.crush-story-detail-modal {
    max-width: 600px;
    padding: 30px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .crush-main-title {
        font-size: 42px;
    }

    .crush-hero-section {
        padding: 50px 24px;
    }

    .crush-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .secret-crush-feed {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .crush-controls-section {
        padding: 24px;
    }

    .crush-feed-container {
        padding: 30px 24px;
    }

    .crush-blob-1 {
        width: 300px;
        height: 300px;
    }

    .crush-blob-2 {
        width: 200px;
        height: 200px;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    :root {
        --crush-gap: 12px;
    }

    .crush-hero-section {
        padding: 40px 16px;
        border-bottom: 1px solid var(--crush-border);
    }

    .crush-main-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .crush-subtitle {
        font-size: 14px;
        max-width: 100%;
    }

    .crush-hero-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .crush-btn-share {
        width: 100%;
        justify-content: center;
    }

    .crush-controls-section {
        padding: 16px;
    }

    .crush-search-wrapper {
        margin-bottom: 16px;
    }

    .crush-filter-tabs {
        gap: 8px;
        margin-bottom: 16px;
    }

    .crush-filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .crush-filter-emoji {
        font-size: 14px;
    }

    .crush-categories-scroll {
        gap: 8px;
    }

    .crush-category-tag {
        padding: 6px 12px;
        font-size: 12px;
    }

    .secret-crush-feed {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }

    .crush-feed-container {
        padding: 20px 16px;
    }

    .story-card {
        padding: 16px;
        gap: 12px;
    }

    .story-header {
        flex-direction: column;
    }

    .story-reactions {
        gap: 8px;
        padding-top: 12px;
        margin-top: auto;
    }

    .reaction-btn {
        min-width: 60px;
        padding: 6px 10px;
        font-size: 12px;
        flex: auto;
    }

    .story-view-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .crush-load-more-wrapper {
        padding: 24px 16px;
    }

    .crush-btn-load-more {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .crush-modal-content {
        width: 95%;
        max-height: 85vh;
        padding: 24px;
        border-radius: 16px;
    }

    .crush-modal-header h2 {
        font-size: 22px;
    }

    .crush-modal-header p {
        font-size: 13px;
    }

    .crush-modal-form {
        gap: 16px;
    }

    .crush-form-group {
        gap: 6px;
    }

    .crush-form-label {
        font-size: 13px;
    }

    .crush-form-select,
    .crush-form-textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    .crush-form-textarea {
        min-height: 100px;
    }

    .crush-btn-submit {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Hide text labels on filters on very small screens */
    @media (max-width: 480px) {
        .crush-filter-text {
            display: none;
        }

        .crush-filter-btn {
            padding: 8px;
        }

        .story-content {
            -webkit-line-clamp: 3;
        }

        .crush-modal-content {
            padding: 20px;
        }

        .crush-story-detail-modal {
            padding: 20px;
        }
    }

    /* Very small phones */
    @media (max-width: 380px) {
        .crush-main-title {
            font-size: 28px;
        }

        .crush-subtitle {
            font-size: 13px;
        }

        .crush-modal-header h2 {
            font-size: 20px;
        }

        .reaction-btn {
            min-width: 50px;
        }
    }
}

/* Landscape mobile */
@media (max-height: 600px) and (max-width: 768px) {
    .crush-hero-section {
        padding: 24px 16px;
    }

    .crush-main-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .crush-subtitle {
        font-size: 13px;
    }

    .crush-hero-content {
        gap: 12px;
    }
}

/* ===== SCROLLBAR STYLING ===== */
.secret-crush-feed::-webkit-scrollbar,
.crush-categories-scroll::-webkit-scrollbar,
.crush-filter-tabs::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.secret-crush-feed::-webkit-scrollbar-track,
.crush-categories-scroll::-webkit-scrollbar-track,
.crush-filter-tabs::-webkit-scrollbar-track {
    background: var(--crush-border);
    border-radius: 3px;
}

.secret-crush-feed::-webkit-scrollbar-thumb,
.crush-categories-scroll::-webkit-scrollbar-thumb,
.crush-filter-tabs::-webkit-scrollbar-thumb {
    background: var(--crush-primary);
    border-radius: 3px;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode (already default) */
@media (prefers-color-scheme: dark) {
    .crush-form-select option {
        background-color: var(--crush-bg);
        color: var(--crush-text);
    }
}
