.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    z-index: 10000;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.cookie-notice-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-notice-content {
    flex: 1;
    min-width: 300px;
}

.cookie-notice-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1DB954;
}

.cookie-notice-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-notice-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-primary {
    background: #1DB954;
    color: white;
}

.cookie-btn-primary:hover {
    background: #1ed760;
    transform: translateY(-1px);
}

.cookie-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-learn-more {
    color: #1DB954;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
}

.cookie-learn-more:hover {
    text-decoration: underline;
}

/* Mobile responsivita */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px;
    }
    
    .cookie-notice-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-notice-actions {
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
        min-width: 120px;
    }
}

/* Animace */
.cookie-notice {
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice.hide {
    transform: translateY(100%);
}