:root {
    --color-theme-background: #2c3e50;
    --color-body-text: #ecf0f1;
    --color-logo-text: #ecf0f1;
    --color-grid-text: #000000;
    --color-panel-header-bg: #A57E58;
    --color-panel-body-bg: #E9E9E9;
    --color-panel-text: #826BA9;
    --color-input-bg: #D7DCE1;
    --color-input-text: #0A4259;
    --color-search-icon-bg: #65A9D3;
    --color-indicator-bg: #888888;
    --color-indicator-shadow: #757575;
    --color-grid-cell-bg: #c6b8a1;
    --color-grid-item-cell-bg: #c6b8a1;
    --color-grid-header-bg: #A57E58;
    --color-winner-outline: #000000;
    --color-suggestion-item-bg: #65A9D3;
    --color-suggestion-item-hover-bg: #5a85c6;
    --color-suggestion-border: #2c3e50;
    --color-status-correct-bg: #98D06B;
    --color-status-correct-text: #2ecc71;
    --color-status-incorrect-bg: #F87575;
    --color-status-incorrect-text: #e74c3c;
    --color-win-display-bg: #34495e;

    --space-xxs: 4px;
    --space-xs: 5px;
    --space-sm: 8px;
    --space-md: 10px;
    --space-lg: 12px;
    --space-xl: 15px;
    --space-xxl: 20px;
    --space-3xl: 24px;
    --space-4xl: 30px;
    --space-5xl: 40px;
    --space-6xl: 50px;
    --space-7xl: 54px;
    
    --font-size-xxs: clamp(0.55rem, 1.5vw, 0.9rem);
    --font-size-xs: clamp(0.85rem, 2.5vw, 1rem);
    --font-size-sm: clamp(0.9rem, 3.0vw, 1.1rem);
    --font-size-md: clamp(1rem, 4.0vw, 1.2rem);
    --font-size-lg: clamp(1.1rem, 4.5vw, 1.6rem);
    --font-size-xl: clamp(1.2rem, 5.0vw, 2rem);
    --font-size-header: clamp(0.5rem, 2vw, 1.3rem);

    --grid-gap: 1vw;
    --cell-padding: 0.5vw;
    --cell-border-radius: var(--space-xxs);
    --cell-border-width: 1px;
    --image-size-percent: 90%;
    --image-border-radius: var(--space-xxs);

    --panel-border-width: var(--space-6xl);
    --panel-padding: var(--space-xl);
    --panel-slice: 80;
    --white-panel-slice: 200;
    --white-panel-padding: 8vw;
    --wide-panel-border-width: 8vw;
    --wide-panel-padding: 8vw;
    --wide-panel-slice: 80;
    --guide-border-width: 8vw;
    --guide-slice: 80;
    --guide-content-padding: 6vw;
    --white-panel-bg-width: 115%;
}

body {
    margin: 0;
    font-family: sans-serif;
    background-color: #6d5c5c;
    background-image: url('images/bg_depleog.webp');
    background-repeat: repeat;
    color: var(--color-body-text);
    overflow-x: hidden;
}

picture img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    
    width: 500px;
    max-width: 500px; 
    
    height: 70px;
    object-fit: contain;
}

#app-container {
    width: 100%;
    max-width: 865px;
    margin: var(--space-xxl) auto;
    padding: 0 var(--space-xxl);
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xxl);
}

.settings-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#game-over-container {
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

#message-area {
    height: 1.5em; 
    font-size: var(--font-size-md);
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: var(--space-4xl);
    z-index: 100;
    width: 90%;
    max-width: 500px;
}

.hidden {
    display: none !important;
}

.game-panel {
    margin: 0 auto;
}


.game-panel h3 {
    color: var(--color-panel-text);
}


.game-panel > #casts-container,
.game-panel > #game-container {
    width: 100%;
    position: relative; 
}

#game-container {
    display: flex;
    align-items: stretch;
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

#guess-input {
    background-color: var(--color-input-bg);
    color: var(--color-input-text);
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 15px;
    flex-grow: 1;
    box-sizing: border-box;
    font-size: var(--font-size-md);
    font-weight: bold;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    outline: none;
    min-width: 0;
    height: 100%;
}

#guess-input::placeholder {
    color: var(--color-input-text);
    opacity: 1;
}

#search-icon {
    background-color: var(--color-search-icon-bg);
    border-radius: 0 50px 50px 0;
    width: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    height: 100%;
}

#search-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
    transform: scaleX(-1);
}

#fishing-rod {
    width: auto;
    max-width: 70px;
    max-height: 70px;
    height: auto;
    object-fit: contain;
    margin-bottom: -15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 5;
    pointer-events: none;
}

#casts-container {
    display: none !important;
}

#casts-indicator-container {
    display: flex;
    gap: var(--space-sm);
}

.cast-indicator {
    width: var(--space-xxl);
    height: var(--space-xxl);
    border-radius: var(--space-xxs);
    transition: background-color 0.3s ease, border 0.3s ease;
    border: 1px solid transparent; 
}

.cast-indicator.active {
    background-color: var(--color-indicator-bg);
    border-color: var(--color-indicator-bg);
}

.cast-indicator.used {
    background-color: transparent;
}
#durability-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}


#guesses-container {
    margin: 10px;
    width: calc(100% - 20px);
}

    .guess-entry {
    display: grid;
    grid-template-columns: repeat(6, 110px);
    row-gap: var(--space-sm);
    column-gap: 3px;
    width: fit-content;
    margin: 0 auto;
    align-items: start;
    justify-content: center;
}


.guess-entry:not(.header) {
    margin-bottom: var(--space-md);
}

.guess-entry.header {
    margin-bottom: var(--space-md);
    align-items: end;
}

.guess-cell {
    padding: var(--cell-padding);
    border-radius: var(--cell-border-radius);
    text-align: center;
    background-color: var(--color-grid-cell-bg);
    border: var(--cell-border-width) solid black;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--color-grid-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size-xxs);
    white-space: normal;
    word-break: break-word;
    width: 110px;
    height: 110px;
    min-width: 110px;
    max-width: 110px;
    min-height: 110px;
    max-height: 110px;
    overflow: hidden;
    line-height: 1.1;
}
.guess-entry.header .guess-cell {
    width: 106px;
    min-width: 106px;
    max-width: 106px;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: unset;
    margin: 2px;
    margin-bottom: 16px;
    border: none;
    border-bottom: 4px solid var(--color-body-text);
    border-radius: 0;
    padding: 0;
    padding-bottom: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: var(--color-body-text);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.guess-entry:not(.header) .guess-cell-with-image {
    background-color: var(--color-grid-item-cell-bg);
}

.guess-cell-with-image {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: var(--space-xxs);
    padding-top: 0;
}

.guess-cell-with-image picture {
    flex-shrink: 0;
    max-height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guess-cell-with-image span {
    font-size: 13px;
}

.guess-cell-with-image span.two-line-name {
    margin-top: calc(var(--space-sm) * -1);
    position: relative;
}

.guess-image {
    border-radius: var(--image-border-radius);
    width: var(--image-size-percent);
    height: var(--image-size-percent);
    object-fit: contain;
}
.cell-icon-image {
  width: 105px;
  height: 105px;
  object-fit: contain;
}

.status-correct { background-color: var(--color-status-correct-bg); }
.status-incorrect { background-color: var(--color-status-incorrect-bg); }
.message-success { color: var(--color-status-correct-text); }
.message-error { color: var(--color-status-incorrect-text); }

#suggestions-box {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 60px;
    z-index: 99;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 0 0 var(--space-xl) var(--space-xl);
}
#suggestions-box::-webkit-scrollbar {
    width: 8px;
}

#suggestions-box::-webkit-scrollbar-track {
    background: #D7DCE1;
    border-radius: 0;
}

#suggestions-box::-webkit-scrollbar-thumb {
    background-color: #888888;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: content-box;
}

#suggestions-box::-webkit-scrollbar-thumb:hover {
    background-color: #555555; 
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: var(--space-sm);
    background-color: var(--color-suggestion-item-bg);
    border-bottom: 1px solid var(--color-suggestion-border);
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.suggestion-item:hover {
    background-color: var(--color-suggestion-item-hover-bg);
}

.suggestion-image {
    width: var(--space-5xl);
    height: var(--space-5xl);
    margin-right: var(--space-md);
    object-fit: contain;
}

.suggestion-name {
    font-weight: bold;
    color:black
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    line-height: 1.2;
}

.stat-label {
    margin-top: 0;
    font-size: 0.8rem;
    white-space: nowrap;
}

#guess-distribution-chart {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 80px;
    gap: var(--space-sm);
    font-family: sans-serif;
}

.dist-bar-item {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    width: 30px;
    gap: 5px;
}
.dist-label {
    font-size: 0.8rem;
    margin: 0;
    font-weight: bold;
}

.dist-bar {
    width: 20px;
    height: 55px;
    max-height: 55px;
    background-color: #ccc;
    border-radius: var(--space-xxs);
    display: grid;
}

.bar-fill {
    background-color: var(--color-grid-header-bg);
    width: 100%;
    border-radius: var(--space-xxs);
    color: white;
    font-weight: bold;
    font-size: var(--font-size-sm);
    transition: height 0.5s ease-out;
    align-self: end;
    grid-row-start: 1;
    grid-column-start: 1;
}

.bar-fill.highlight {
    background-color: var(--color-winner-outline);
}

.dist-bar > span {
    grid-row-start: 1;
    grid-column-start: 1;
    display: grid;
    place-items: start center;
    align-self: start;
    padding-top: var(--space-sm);
    color: white;
    font-weight: bold;
    font-size: var(--font-size-sm);
}

.win-display, .lose-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in-out;
    width: 100%;
}

.win-display h3 { 
    margin: 0 0 5px 0;
    color: var(--color-status-correct-text);
    font-size: 1.4rem;
}
.win-display img, .lose-display img {
    width: 55px;
    height: 55px;
    margin-bottom: 5px;
    object-fit: contain;
}
.win-display p,
.lose-display p {
    font-size: var(--font-size-md);
    color: var(--color-input-text);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.win-display strong,
.lose-display strong {
    color: var(--color-input-text);
    font-family: 'Poppins', sans-serif;
}

.win-display strong,
.lose-display strong {
    color: var(--color-input-text);
    font-family: 'Poppins', sans-serif;
}
#share-button { 
    background-color: var(--color-search-icon-bg); 
    color: white; 
    border: none; 
    border-radius: var(--space-xxs); 
    padding: 8px 20px; 
    font-size: var(--font-size-sm); 
    font-weight: bold; 
    cursor: pointer; 
    margin-top: 10px; 
    margin-bottom: 20px;
    transition: background-color 0.2s; 
}
#share-button:hover { background-color: var(--color-suggestion-item-hover-bg); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.themed-panel {
    border-style: solid;
    border-width: var(--panel-border-width);
    border-image-source: url('images/cell_big.svg');
    border-image-slice: var(--panel-slice) fill;
    border-image-repeat: stretch;
    padding: var(--panel-padding);
    width: 100%;
    box-sizing: border-box;
    font-family: sans-serif;
    color: var(--color-body-text);
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    margin: var(--space-xxl) auto;
    
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
}
.themed-panel-inner {
    width: 100%;
}
.themed-panel-mini {
    width: 100%;
    box-sizing: border-box;
    font-family: sans-serif;
    color: var(--color-body-text);
}

.themed-panel-white {
    background-image: url('images/cell_white.svg');
    background-size: 100% 100% !important;
    background-repeat: no-repeat;
    background-position: center;
    width: 500px;
    min-width: 500px;
    max-width: 500px;
    aspect-ratio: 650 / 250;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 0 45px 0;
    box-sizing: border-box;
    position: relative;
}
.game-panel-content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#casts-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 0;
}

#durability-wrapper h3 {
    margin: 0;
    padding-right: 10px;
    font-size: 0.9rem;
    color: #826BA9;
}

#game-container {
    display: flex;
    align-items: stretch;
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


#search-icon {
    background-color: var(--color-search-icon-bg);
    border-radius: 0 50px 50px 0;
    width: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

#search-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
    transform: scaleX(-1);
}

.guide-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);

    width: 500px;
    max-width: 500px;
}

#help-guide {
    width: 100%;
    
    height: 288px; 
    
    margin-top: calc(var(--space-4xl) * -1);
    background-image: url('images/cell_mini.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.guide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--guide-content-padding);
    box-sizing: border-box;
    height: 100%;
}

.guide-title-image {
    max-width: 200px;
    height: auto;
    transform: translateX(0%) translateY(10%); 
}

.guide-main-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    width: 100%;
}

#stats-container {
    width: 500px;
    max-width: 500px;
    height: 288px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    
    background-image: url('images/cell_mini.svg');
    background-size: 100% 100% !important;
    background-repeat: no-repeat;
    background-position: center;
    
    padding: 20px 40px;
    box-sizing: border-box;
    position: relative;
    margin-top: 30px;
}

#stats-container .guide-title-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-85%);
    width: 150px;
}

.stats-content-area {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.info-panel h2 {
    margin: 0;
    font-size: var(--font-size-md);
}

.color-legend {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

.help-item.correct,
.help-item.wrong {
    width:100px;
    height: 100px;
    border-radius: var(--space-xxs);
    display: grid;
    place-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border: 1px solid black;
    box-sizing: border-box;
    color: var(--color-grid-text);
}

.help-item.correct {
    background-color: var(--color-status-correct-bg);
}

.help-item.wrong {
    background-color: var(--color-status-incorrect-bg);
}

.special-hint {
    font-style: italic;
    text-align: center;
    font-size: var(--font-size-xxs);
    margin: 0;
}

.message-fade-out {
    animation: fadeOut 7s forwards;
}
.social-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    width: 500px;
    max-width: 500px;
    position: relative;
    margin-top: 30px;
}

.social-title-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-85%);
    width: 200px;
    height: auto;
    display: block;
    z-index: 2;
}

#social-panel {
    width: 100%;
    height: 288px;
    background-image: url('images/cell_mini.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0;
    display: block;
}

.social-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0; 
}

#social-panel .social-content a {
    width: 150px; 
    height: auto;
    display: block; 
    
    transition: transform 0.2s;
}

#social-panel .social-content a:hover {
    transform: scale(1.05);
}

#social-panel .social-content a img {
    width: 100%;
    height: auto;
    display: block; 
}
.length-cell-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xxs);
    height: 100%;
    width: 100%;
}

.guess-entry:not(.header) .guess-cell:nth-child(5) {
    padding: 0;
}
@keyframes fadeOut {
    0% { opacity: 1; }
    43% { opacity: 1; }
    100% { opacity: 0; }
}
.message-fade-out-short {
    animation: fadeOutShort 5s forwards;
}

@keyframes fadeOutShort {
    0% { opacity: 1; }
    60% { opacity: 1; }
    100% { opacity: 0; }
}


.guess-entry:not(.header) .guess-cell:nth-child(4) .cell-icon-image {
    filter: invert(40%) grayscale(100%);
}

.guess-entry:not(.header) .guess-cell:nth-child(5) span {
    font-size: var(--font-size-lg);
}

.guess-entry:not(.header) .guess-cell:nth-child(5) .arrow-icon {
    height: var(--font-size-lg);
    width: auto;
}

@media (max-width: 549px) {
    #app-container {
        padding: 0;
    }

    picture img {
        width: 400px;
        max-width: 400px;
    }

    .themed-panel-white,
    #game-over-container {
        width: 400px;
        min-width: 400px;
        max-width: 400px;
        height: 192px;
        aspect-ratio: unset;
    }

    .guide-section-container,
    .social-section-container {
        width: 400px;
        max-width: 400px;
    }

    #stats-container {
        width: 400px;
        max-width: 400px;
    }
    
    .stats-grid {
        width: 85%;
    }

    #game-container {
        max-width: 336px;
        height: 48px;
    }

    #search-icon {
        width: 48px;
        flex: 0 0 48px;
    }

    #suggestions-box {
        right: 48px;
    }

    #search-icon svg {
        width: 24px;
        height: 24px;
    }

    #share-button {
        margin-bottom: 12px;
    }
}
@media (max-width: 449px) {
    #app-container {
        padding: 0;
    }

    picture img {
        width: 300px;
        max-width: 300px;
    }

    .themed-panel-white,
    #game-over-container {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10px 0 0 0;
    }

    .guide-section-container,
    .social-section-container {
        width: 300px;
        max-width: 300px;
    }

    #stats-container {
        width: 300px;
        max-width: 300px;
        padding: 15px 5px;
    }

    .stats-grid {
        width: 94%;
    }

    #game-container {
        max-width: 252px;
        height: 36px;
    }

    #search-icon {
        width: 36px;
        flex: 0 0 36px;
    }

    #suggestions-box {
        right: 36px;
    }

    #search-icon svg {
        width: 18px;
        height: 18px;
    }

    .win-display h3 {
        font-size: 1.1rem;
        margin-bottom: 2px;
        margin-top: 0;
    }

    .win-display img, .lose-display img {
        width: 40px;
        height: 40px;
        margin-bottom: 2px;
    }

    .win-display p, .lose-display p {
        font-size: 0.8rem;
        line-height: 1.1;
        margin-bottom: 2px;
    }

    #share-button {
        padding: 4px 12px;
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 0.75rem;
    }
}
#main-footer {
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: sans-serif;
}

#main-footer .footer-highlight a {
    color: #3D687F;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 1px;
    transition: transform 0.2s;
    display: inline-block;
    border: none;
    padding: 0;
    
    text-shadow: none; 
}

#main-footer .footer-highlight a {
    color: #3D687F; 
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 1px;
    transition: transform 0.2s;
    display: inline-block;
    transition: transform 0.2s ease-in-out;
    border: none;
    padding: 0;
    text-shadow: none; 
}
#main-footer .footer-highlight a:hover {
    transform: scale(1.1);
    cursor: pointer;
}
.footer-bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.footer-bottom-row a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom-row a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 599px) {
    .policy-panel {
        width: 90% !important;
        min-width: 0 !important;
        padding: 30px 20px !important;
    }
}
.input-error {
    color: #e74c3c !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-error::placeholder {
    color: #e74c3c !important;
    opacity: 1;
}

@keyframes shake-text-content {
    0%, 100% { text-indent: 0; }
    10%, 30%, 50%, 70% { text-indent: -10px; }
    20%, 40%, 60%, 80% { text-indent: 10px; }
}

.shake-text {
    animation: shake-text-content 0.5s ease-in-out; 
}