.cookie-consent-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(33, 33, 33, 0.95);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Press Start 2P', cursive, sans-serif;
}

.cookie-consent-banner.active {
    bottom: 0;
}

.cookie-consent-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    font-family: 'Press Start 2P', cursive, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    image-rendering: pixelated;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath d='M1 1h1v1H1V1zm2 1h1v1H3V2zm-2 1h1v1H1V3z' fill='%23ffffff' fill-opacity='0.2'/%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: -1;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.accept-btn {
    background-color: var(--primary-color);
    color: #fff;
}

.reject-btn {
    background-color: #555;
    color: #fff;
}

.settings-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-policy-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .cookie-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}