body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: #ffffff;
}

.content {
    width: 300px;
    height: 100px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #34373a;
    border-radius: 8px;
    padding: 20px;

    background: linear-gradient(135deg, #78acff, #377EFA);
    background-size: 400% 400%;

    animation: ICE 18s ease infinite;
}

.content::before,
.content::after {
    content: '';
    position: absolute;

    width: 100px;
    height: 100px;

    background: transparent;
    border: 16px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    animation: wave 25s linear infinite;

    opacity: 0.6;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

.content::after {
    width: 260px;
    height: 260px;

    border: 10px solid rgba(255, 255, 255, 0.08);

    animation-duration: 32s;
    animation-direction: reverse;

    opacity: 0.4;
}

.content1 {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.like {
    display: flex;
    justify-content: end;
    gap: 20px;
    margin-top: 10px;
}

.fa {
    font-size: 28px;
    cursor: pointer;
    transition: 0.2s ease;
}

.fa.fa-thumbs-up:hover,
.fa.fa-thumbs-down:hover {
    transform: translateY(-3px);
}

.fa.fa-thumbs-up:active,
.fa.fa-thumbs-down:active {
    transform: scale(0.95);
}

@keyframes ICE {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 25px;
    border-radius: 16px;
    width: 300px;
    height: auto;
    text-align: center;
    animation: popup 0.3s ease;
}

.modal-content textarea {
    width: 75%;          
    height: 100px;         
    min-height: 120px;     
    max-height: 300px;     
    resize: vertical;      
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

@keyframes popup {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #000;
}

.saada {
    display: flex;
    justify-content: end;
    margin-top: 15px;
}

.saada button {
    padding: 0.85rem 2.5rem;
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    width: 50%;
}

.saada button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.45);
    background: linear-gradient(135deg, #0052cc, #0088ff);
}

.saada button:active {
    transform: scale(0.96);
}

.thank-content {
    text-align: center;
    padding: 40px 30px;
}

.thank-content h2 {
    color: #0066ff;
    margin-bottom: 15px;
}

.thank-content p {
    margin: 10px 0;
    font-size: 1.05rem;
}

/* Sama nupu stiil, aga roheline variant */
#closeThankBtn {
        background: linear-gradient(135deg, #0052cc, #0088ff);
}

#closeThankBtn:hover {
    background: linear-gradient(135deg, #0052cc, #0088ff);
}