/* inter */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Inter-VariableFont_slnt,wght.ttf') format('ttf');
}

/* Syne*/
@font-face {
    font-family: 'Syne';
    font-display: auto;
    src: url('../fonts/Syne.ttf') format('truetype');
    font-display: swap;
}


html {
    font-family: 'Inter';
    min-width: 100%;
}

body {
    font-weight: 400;
    color: #171324;
    font-family: 'Inter', sans-serif;
    background-color: #fbfbfb;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

h1 {
    font-family: 'Syne', sans-serif;
    margin: 0 0 0 0;
    text-align: center;
}


h1 span, h2 span {
    position: relative;
    white-space: nowrap;
    transform: rotateX(180deg);
}

h1 span::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    background-image: url(../images/home-hero-stroke.svg);
    background-size: 100% auto;
    background-position: 50%;
    background-repeat: no-repeat;
    height: 24px;
    width: 100%;
}

h2 span::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    background-image: url(../images/home-hero-stroke.png);
    background-size: 100% auto;
    background-position: 50%;
    background-repeat: no-repeat;
    height: 24px;
    width: 100%;
}

h2 {
    font-family: 'Syne', sans-serif;
    color: rgba(23, 19, 36, .56);
    text-align: center;
}

h5 {
    position: relative;
    font-weight: 700;
    font-size: 1em;
    font-family: 'Syne', sans-serif;
}

p {
    line-height: 1.375rem;
    margin-top: .375rem;
}

p.fussnote {
    font-size: 0.9em;
    color: #a2a2a2;
    margin: 0 0 2em 0;
}


hr.jn {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(152, 9, 49, 0.75), rgba(0, 0, 0, 0));
    margin: 1em auto;
}

header {
    margin: 0 auto;
    padding: 0;
    max-width: 1440px;
}

.upload {
    text-align: center;
    margin: 0 auto 0;
    padding: 20px;
    border: 4px dashed #c7c7c7;
    border-radius: 15px;
}

.grid-3 .ul-info {
    margin: 0 auto 3em;
    padding: 0 5%;
}


.top {
    display: grid;
    grid-template-columns: 20% 80%;
}

.top ul {
    text-align: right;
    padding: 21px 0 0 0;
    margin: 0;
}

.top ul li {
    list-style: none;
    display: inline;
    margin: 0 0 0 5%;
}

.top ul li a {
    text-decoration: none;
    text-decoration: none;
    color: #171324;
    font-weight: 500;
    font-size: 1rem;
}

.top ul li a:hover {
    border-top: 1px solid #171324;
}

header nav.navbar {
    margin: 0 40px;
}

.top-left {
    height: 5em;
    width: 100px;
    text-align: center;
}

.top-left img {
    height: 59px;
}

.grid-3 {
    display: grid;
    text-align: center;
    margin: 0 0 1em 0;
}

.grid-3 img {
    width: 60px;
    height: auto;
}

.grid-avatar img {
    width: 15%;
    height: auto;
}


.main {
    max-width: 1440px;
    margin: 0em auto 0;
}

.article {
    padding: 0 40px;
    text-align: left;
}

.more {
    text-align: center;
    padding: 2em 0 4em;
}


div {
    display: block;
}

.top {
    display: grid;
    grid-template-columns: 20% 80%;
    /*padding: 24px 0;*/
}


form {
    display: flex;
    margin-top: 0em;
    unicode-bidi: isolate;
    align-items: center;
    justify-content: center;
}

.videoFeedback {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    .videoFeedback input {
        flex: 1 1 auto;
        min-width: 200px; /* Ensures input maintains reasonable width */
    }

    /* First two buttons stay on same line */
    .videoFeedback button:nth-child(-n+2) {
        flex: 0 1 auto;
    }

    /* Last button takes full width */
    .videoFeedback button:last-child {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.actionRowsWrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.actionRow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.actionRow label {
    display: flex;
    align-items: center;
    gap: 8px;
}

button {
    display: inline-block;
    border-radius: 8px;

    background-color: #c10633; /* Red */
    border: none;

    color: #fff;
    text-align: center;
    font-size: 16px;

    cursor: pointer;
    transition-duration: 0.4s;

    /*10.12.24*/
    max-width: 100%;
    margin: auto;
}

button.secondary {
    background-color: transparent !important;
    border: 2px solid #c10633 !important;
    color: #c10633 !important;
}

button.secondary:hover {
    background-color: transparent !important;
    border: 2px solid #c10633 !important;
    color: #c10633 !important;
}

button:hover {
    background-color: #98092f;
}

select {
    height: 40px;
    padding: 0 12px;

    font-size: 16px;
}

#status {
    overflow: auto;

    background-color: #fff;
    height: 80px;
    padding: 10px 12px;
    align-self: center;

    border: 1px solid #ccc;
    border-radius: 8px;

    font-size: 14px;
    line-height: 1.6;
}

#conversationLog {
    overflow: auto;

    background-color: #fff;
    height: 160px;
    padding: 10px 12px;
    align-self: center;

    border: 1px solid #ccc;
    border-radius: 8px;

    font-size: 14px;
    line-height: 1.6;
}


input {
    height: 40px;
    flex-grow: 2;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0 10px;
}

input:focus {
    outline: 1px solid #c10633;
}

.videoSectionWrap {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 12px;
    /*neu 10.12.24
    min-height:60vH;
    */
    margin-bottom: 20px;
}

.avatarSpinnerWrap, .jobControls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.jobControls.hide {
    display: none;
}

.jobControls button {
    padding: 10px;
    color: #fff;
    background: #c10633;
    max-width: 100%;
    border-radius: 8px;

    border: none;

    font-size: 16px;

    cursor: pointer;
    transition-duration: 0.4s;

    margin: auto;

    /* Center text both horizontally and vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .jobControls {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .jobControls button:not(:last-child) {
        flex: 1 1 auto;
        min-width: 120px; /* Ensures buttons don't get too narrow */
    }

    .jobControls button:last-child {
        flex: 1 1 100%;
        width: 100%; /* Forces full width */
    }
}


.actionRow.switchRow {
    width: 100%;

    justify-content: center;
}

.switchRow {
    flex-direction: column;
}

.switchRow > label {
    width: 100%;

    display: flex;
    justify-content: center;
}

.switchRow > label input {
    flex: 1;
    max-width: 500px;
}

.videoSectionWrap .videoWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

/*---------- Switch START ----------*/
.switchWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: '';
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #c10633;
}

input:focus + .slider {
    box-shadow: 0 0 1px #c10633;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/*---------- Switch END ----------*/


.videoSectionWrap .hide {
    display: none;
}

.videoSectionWrap .show {
    display: flex;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.hidden {
    visibility: hidden !important;
}

.visible {
    visibility: visible !important;
}

.videoSectionWrap .hidden {
    visibility: hidden;
}

.videoSectionWrap .visible {
    visibility: visible;
}

.videoFeedback.show {
    display: flex;
}

.inline-block-child {
    display: inline-flex;
    gap: 12px;
}


/*---------- BUTTONS START ----------*/

input[type="button"] {
    cursor: pointer;
    /* padding: 10px; */
    font-family: 'Syne';
    font-weight: bold;
    /* font-size: 1.2rem; */
    transform: 0.8s;
    border: 2px solid #c10633;
    color: #fff;
    /* border-radius: 16px; */
    background: #c10633;
    max-width: 100%;
}

button {
    cursor: pointer;
    padding: 10px;
    font-family: 'Syne';
    font-weight: bold;
    font-size: 1.2rem;
    transform: 0.8s;
}

button:disabled {
    cursor: not-allowed;
    background-color: #ccc;
}

.button.hide {
    display: none;
}

.presetBtn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
}

.presetBtn:hover {
    background-color: #ccc;
}

button.datei {
    display: block;
    border: 2px solid #c10633;
    color: #fff;
    background: #c10633;
    max-width: 100%;
    margin: 10px auto;
}

button.datei:hover {
    background: #98092f;
    border: 2px solid #98092f;
    color: #ffffff;
    transform: 0.8s;
}

button.web a {
    color: #ffffff;
}

button.web {
    border: 2px solid #c10633;
    color: #fff;
    border-radius: 16px;
    background: #c10633;
}

button.web:hover {
    background: #98092f;
    border: 2px solid #98092f;
    color: #ffffff;
    transform: 0.8s;
}

button.cta {
    display: block;
    border: 2px solid #c7c7c7;
    color: #6a6a6a;
    background: #ffffff;
    margin: 10px auto;
}


button.cta:hover {
    border: 2px solid #6a6a6a;
    color: #000000;
    background: #ffffff;
}

button.cta a {
    color: #ffffff;
}

/* Footer */
footer {
    position: relative;
    background: #98092f;
    margin: 0 auto;
    color: #ffffff;
    z-index: 400;
}

.footer-grid-outer {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-grid {
    padding: 70px 0;
}

.footer-grid {
    display: grid;
}

footer p {
}

footer h5 {
}

footer h4 {
}

footer a {
    color: hsla(0, 0%, 100%, .72);
    text-decoration: none;
    font-weight: 400;
    font-size: 1em;
}

footer li {
    color: hsla(0, 0%, 100%, .72);
    font-weight: 400;
    font-size: 1em;
    margin: 0 0 20px 0;
}

footer a:hover, footer li:hover {
    color: #ffffff;
}

footer li img {
    height: 1em;
    width: auto;
    margin: 0 10px 0 0;
}

.footer-left img {
    max-width: 30%;
}

footer ul {
    margin: 0;
    padding: 0;
}

footer li {
    list-style: none;
}

.footer-grid {
    padding: 70px 40px;
}

/*---------- MEDIA START ----------*/
@media only screen and (min-width: 1025px) {
    /*Video*/
    .videoWrap .videoEle {
        max-height: 600px;
        height: 600px;
    }
}

@media only screen and (max-width: 1024px) {
    body {
        font-size: 0.9em;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    .grid-5 h2 {
        font-size: 1.2em;
        margin-top: 0em;
    }

    nav.navbar {
        width: 90%;
        margin: 0 auto;
    }

    .main {
        width: 90%;
        margin: 0 auto;
    }

    .grid-3 .upload img {
        margin: 2em auto 0;
        width: auto;
    }

    .grid-3 {
        grid-template-columns: 20% 60% 20%;
    }

    .grid-5 h2 {
        font-size: 1.2em;
        margin-top: 0em;
    }

    .hamburger-box {
        display: none;
    }

    /*Video*/
    .videoWrap .videoEle {
        max-height: 300px;
        height: 300px;
    }
}

@media only screen and (min-width: 600px) {
    body {
        font-size: 1em;
    }

    nav.navbar {
        width: 90%;
        margin: 0 auto;
    }

    .main {
        width: 90%;
        margin: 0 auto;
    }

    nav {
        display: inline-block;
        width: 100%;
    }

    .hamburger-box {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
        grid-column-gap: 2%;
    }

    /*Background*/
    .backgroundWrap .background {
        width: 500px;
    }

    #rightSide {
        margin: auto 0;
    }
}

@media only screen and (max-width: 600px) {
    .article {
        padding: 0;
    }

    h2 span::after {
        bottom: -12px;
    }

    .grid-3 {
        grid-template-columns: 10% 80% 10%;
    }

    .grid-5 h2 {
        font-size: 1em;
        margin-top: 0em;
    }

    .grid-5 .image {
        height: 8em;
        vertical-align: bottom;
    }

    .grid-5 .grid-5-pfeil img {
        display: none;
    }

    .hamburger-box {
        display: block;
    }

    nav {
        display: none;
    }

    .is-active nav {
        display: inline-block;
    }

    .top ul li {
        margin: 0 0 1em 5%;
        display: block;
        width: 100%;
    }

    button {
        font-size: 1em;
    }

    .grid-3 .ul-info {
        margin: 0 auto 1em;
        padding: 5% 0;
    }

    .footer-grid {
        grid-template-columns:100%;
        text-align: center;
    }

    /*Background*/
    .backgroundWrap .background {
        width: 300px;
    }

    #rightSide {
        margin: auto auto 0;
    }
}

@media only screen and (min-width: 300px) {
    .grid-3 {
        grid-template-columns: 10% 80% 10%;
    }

}

/*---------- UPLOAD START ----------*/

.upload {
    position: relative;
    overflow: hidden;
    margin: 10px;
}

#inputFileName {
    text-align: center;
}

.upload input[type="file"] {
    -webkit-appearance: none;
    appearance: none;
    left: 0;
    width: 100%;
    height: 100%;

    line-height: 0;
    top: 0;
    z-index: 1;
    cursor: pointer;
    filter: alpha(opacity=0);
    position: absolute;
}

input#file-upload-button {
    visibility: hidden;
}

input::file-selector-button {
    visibility: hidden;
}

.fileInputWrap {
    display: block;
    overflow: hidden;
    color: transparent;
}

#avatarSpinnerWrap, #cvSearchSpinnerWrap {
    justify-self: center;
    text-align: center;
}

.spinner {
    border-top: 4px solid #E3E2E9;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    animation: spin 1s linear infinite;
    position: relative;
    top: 4px;
    margin: 10px auto;
}

.spinner::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-bottom: 4px solid #c10633;
    border-left: 4px solid transparent;
}

#avatarSpinnerWrap {
    margin: auto 0;
}

#avatarSpinner {
    align-self: center;
    aspect-ratio: 1/1;
    padding-left: 50%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spinner.hide {
    display: none;
}


#jobListUl {
    gap: 16px;
    max-height: fit-content;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    margin-bottom: 10px;
    padding: 4px; /* Add padding to show box-shadow */
    scrollbar-width: thin; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

#jobListUl::-webkit-scrollbar {
    height: 6px; /* For Chrome, Safari, and Opera */
}

#jobListUl::-webkit-scrollbar-thumb {
    background-color: #c10633;
    border-radius: 3px;
}

.job-card {
    flex: 0 0 auto; /* Don't grow or shrink, stay at base size */
    display: inline-block;
    background-color: #f1f1f2;
    border-radius: 16px;
    border: 4px solid transparent;
    padding: 16px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 400px;
    min-height: 120px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.job-card-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.job-card-content-holder {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: auto;
    white-space: normal; /* Allow text wrapping */
}

.job-card h3 {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin: 0;
    font-weight: 700;
    white-space: normal;
    word-wrap: break-word;
}

.job-card-content-holder img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.job-card p {
    font-size: 0.75rem;
    color: #6a6a6a;
    margin: 0;
    white-space: normal;
}

@media screen and (max-width: 768px) {
    .job-card {
        width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .job-card {
        width: 250px;
        min-height: 100px;
        padding: 12px;
    }

    .job-card h3 {
        font-size: 0.8rem;
        line-height: 1.2rem;
    }

    .job-card p {
        font-size: 0.7rem;
    }

    .job-card-content-holder img {
        width: 32px;
        height: 32px;
    }
}

.job-clicked {
    border: 4px solid #c10633;
}

.grid-avatar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    justify-content: center;
}

/*Verschieben auf Medium 460px 13.12.24
#rightSide {
    margin: auto 0;
}
*/
.job-display {
    border-radius: 16px;
    padding: 16px;
    background-color: #bebebe;
    height: 568px;
    overflow-y: auto;
    border: 1px solid #303030;
}

#job-card-content-title {
    font-size: .875rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 1.25rem;
    font-weight: 700;
}

.job-card-content-title span {
    font-size: 1rem;
    color: #6a6a6a;
    margin-top: 0.5rem;
}

#selectedJob {
    overflow-y: auto;
}

.refine-button {
    position: relative;
    margin: 10px auto;
}

.linkbutton {
    max-width: 100%;
    margin: 10px auto;
}


.timer {
    display: none !important;
    text-align: center;
}

#ninjajobs {
    width: 100%;
    height: auto;
}

.error-alert {
    background-color: #c10633;
    border: 1px solid #c10633;
    color: #f1f1f2;
    padding: 12px 20px;
    border-radius: 4px;
    margin: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.error-alert.hide {
    display: none;
}

.error-alert.show {
    display: flex
}

.error-message {
    flex-grow: 1;
}

.close-button {
    background: none;
    border: none;
    color: #f1f1f2;
    font-size: 20px;
    cursor: pointer;
    padding: 0 0 3px 10px;
    line-height: 1;
}

.close-button:hover {
    color: #f1f1f2;
    background: none;
}

#feedbackRedirect.show {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

#feedbackRedirect.hide {
    display: none;
}

#recording-modal {
    border: none;
    border-radius: 10px;
    padding: 20px;
    width: 50%;
    max-width: 400px;
    text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    #recording-modal {
        width: 60%;
    }
}

#recording-animation {
    width: 20px;
    height: 20px;
    background-color: #c10633;
    border-radius: 50%;
    margin: 15px auto;
    display: none; /* Hidden until recording starts */
    animation: pulse 1s infinite;
}

/* Keyframes for the pulsating effect */
@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }
}

/* Premium Button Effects for startOnboarding */
#startOnboardingBtn {
    position: relative;
    padding: 16px 32px;
    background: linear-gradient(135deg, #D10A3C, #C10633, #A00429);
    background-size: 200% 200%;
    color: white;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s ease;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(193, 6, 51, 0.4),
    0 10px 30px rgba(193, 6, 51, 0.2);
    animation: buttonGradient 5s ease infinite,
    buttonPulse 2s infinite alternate;
}

#startOnboardingBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px 8px rgba(193, 6, 51, 0.5);
    opacity: 0;
    animation: glowPulse 2.5s infinite alternate;
}

#startOnboardingBtn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    animation: shimmer 3s infinite;
    transform: skewX(-20deg);
}

/* Create the pulsing effect behind the button */
#onboarding {
    position: relative;
}

#onboarding::after {
    width: 230px;
    height: 65px;
    animation-delay: 1.5s;
    filter: blur(20px);
    background-color: rgba(193, 6, 51, 0.55);
}

/* Hover effects */
#startOnboardingBtn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(193, 6, 51, 0.5),
    0 15px 40px rgba(193, 6, 51, 0.3);
}

#startOnboardingBtn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(193, 6, 51, 0.4);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.04);
    }
}

@keyframes buttonGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        box-shadow: 0 0 15px 5px rgba(193, 6, 51, 0.5);
    }
    100% {
        opacity: 0.7;
        box-shadow: 0 0 25px 10px rgba(193, 6, 51, 0.7);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}
