.cookie {
    bottom: 1.5rem;
    z-index: 99999;
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    animation: cookieAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie .info {
    background: linear-gradient(90deg, #2E2E34, #70A79F);
    border-radius: 10px;
    height: auto;
    min-height: 70px;
    width: fit-content;
    max-width: 90vw;
    margin: 0 auto;
    border: 1px solid rgba(197, 140, 137, 0.3);
    box-shadow: 0 0 20px rgba(112, 167, 159, 0.5);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.cookie .info .block-cookie {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 12px 20px;
    width: 100%;
    margin: 0;
}

.cookie .info .cookie-icon {
    height: 40px;
    width: 40px;
    background: rgba(46, 46, 52, 0.8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #70A79F;
    box-shadow: 0 0 15px #70A79F;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.cookie .info .cookie-icon .chip {
    width: 16px;
    height: 16px;
    background: #1e1e1e;
    border-radius: 4px;
    position: relative;
}

.cookie .info .cookie-icon .chip::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #70A79F;
    border-radius: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.cookie .info span {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 0 10px #70A79F;
    letter-spacing: 0.3px;
    line-height: 1.4;
    flex: 1;
}

.cyber-text::after {
    content: '_';
    animation: cursorBlink 1s infinite;
    color: #70A79F;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.cookie .accept-btn {
    background: rgba(46, 46, 52, 0.9);
    border: 2px solid #70A79F;
    border-radius: 8px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #70A79F;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-width: 130px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookie .accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px #70A79F;
    background: #2E2E34;
}

.cookie .accept-btn:active {
    transform: translateY(0);
}

@keyframes cookieAppear {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    70% {
        transform: translateY(-5px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 992px) {
    .cookie {
        bottom: 0.5rem;
    }

    .cookie .info {
        width: 95vw !important;
        max-width: 95vw !important;
        min-height: auto;
    }

    .cookie .info .block-cookie {
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px 12px;
    }

    .cookie .info .cookie-icon {
        height: 36px;
        width: 36px;
        margin: 0 auto 5px;
    }

    .cookie .info .cookie-icon .chip {
        width: 14px;
        height: 14px;
    }

    .cookie .info span {
        width: 100%;
        font-size: 14px;
        text-align: center;
        white-space: normal !important;
        word-break: break-word;
        line-height: 1.4;
        margin: 0 0 5px 0;
    }

    .cookie .accept-btn {
        margin: 0 auto;
        min-width: 130px;
        width: auto;
        padding: 8px 20px;
        font-size: 14px;
        white-space: nowrap;
    }

    .cyber-text::after {
        display: none;
    }
}

